1
0
Fork 0
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:
Varun Saini 2024-11-16 01:40:58 -08:00
parent e905e30570
commit c75daaabcc

View file

@ -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;