This commit is contained in:
Gvidas Juknevičius 2024-08-25 23:58:57 +03:00
parent df5e544347
commit b88ca058fa
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ local require = function(path)
return __DEFAULT_IMPORT(path)
end
end
local __UPDATE_HASH = "c69045b4f10e844dfc60cf3a217a864f10210a7e"
local __UPDATE_HASH = "4db13421e8f5b57961154b92098c42a237ebcdcf"
rawset(__BUNDLER_FILES, "updater.lua", function ()
local utils = require("utils.lua")
local config = require("config.lua")
@ -244,4 +244,4 @@ rawset(__BUNDLER_FILES, "main.lua", function ()
end
return mod;
end)
return require("main")
return require("main.lua")

2
x.py
View File

@ -56,7 +56,7 @@ def main():
print(f"=== FILE: {file}");
buf += read_file(file);
buf += "return require(\"main\")";
buf += "return require(\"main.lua\")";
if MINIMISE:
buf = minimise(buf);