This commit is contained in:
Gvidas Juknevičius 2024-08-25 23:56:01 +03:00
parent 7c78db3620
commit df5e544347
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 4 additions and 2 deletions

View File

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

1
x.py
View File

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