This commit is contained in:
Gvidas Juknevičius 2024-08-25 23:53:40 +03:00
parent 7ed9f76f15
commit 7c78db3620
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 1 additions and 3 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 = "18ceba38b88d8a5429e953d23257a26a01c642cf" local __UPDATE_HASH = "fa901aeda9f7ac12a3f0d9bbf4bec9efc14d7797"
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,4 +244,3 @@ rawset(__BUNDLER_FILES, "main.lua", function ()
end end
return mod; return mod;
end) end)
return require("main.lua").Main

1
x.py
View File

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