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)
end
end
local __UPDATE_HASH = "fa901aeda9f7ac12a3f0d9bbf4bec9efc14d7797"
local __UPDATE_HASH = "c69045b4f10e844dfc60cf3a217a864f10210a7e"
rawset(__BUNDLER_FILES, "updater.lua", function ()
local utils = require("utils.lua")
local config = require("config.lua")
@ -244,3 +244,4 @@ rawset(__BUNDLER_FILES, "main.lua", function ()
end
return mod;
end)
return require("main")

3
x.py
View File

@ -55,7 +55,8 @@ def main():
for file in FILES:
print(f"=== FILE: {file}");
buf += read_file(file);
buf += "return require(\"main\")";
if MINIMISE:
buf = minimise(buf);