diff --git a/CLI/Repl.cpp b/CLI/Repl.cpp index 43aab4e49..3bda38f1d 100644 --- a/CLI/Repl.cpp +++ b/CLI/Repl.cpp @@ -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;