mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Set entry file prefix: '=' -> '@'
This commit is contained in:
parent
e905e30570
commit
c75daaabcc
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ static bool runFile(const char* name, lua_State* GL, bool repl)
|
|||
// new thread needs to have the globals sandboxed
|
||||
luaL_sandboxthread(L);
|
||||
|
||||
std::string chunkname = "=" + std::string(name);
|
||||
std::string chunkname = "@" + std::string(name);
|
||||
|
||||
std::string bytecode = Luau::compile(*source, copts());
|
||||
int status = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue