:3
This commit is contained in:
parent
68422b9343
commit
28ceac8643
|
@ -7,7 +7,7 @@ local require = function(path)
|
||||||
return __DEFAULT_IMPORT(path)
|
return __DEFAULT_IMPORT(path)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local __UPDATE_HASH = "56dffe1d3654b028310d4c9dc976b7c7cc8c9d5a"
|
local __UPDATE_HASH = "c4faab9a8d910c7a5777c0d0c8190204a9ae1f53"
|
||||||
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")
|
||||||
|
@ -194,7 +194,7 @@ rawset(__BUNDLER_FILES, "ui.lua", function ()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local status, err = pcall(function ()
|
local status, err = pcall(function ()
|
||||||
parallel.waitForAll(basalt.autoUpdate, updater.UpdateChecker)
|
parallel.waitForAll(basalt.autoUpdate)
|
||||||
end)
|
end)
|
||||||
if not status and err ~= "Terminated" then
|
if not status and err ~= "Terminated" then
|
||||||
print("Error detected: " .. err)
|
print("Error detected: " .. err)
|
||||||
|
@ -241,4 +241,4 @@ rawset(__BUNDLER_FILES, "main.lua", function ()
|
||||||
end
|
end
|
||||||
return main
|
return main
|
||||||
end)
|
end)
|
||||||
require("main.lua").Main()
|
return require("main.lua").Main
|
||||||
|
|
|
@ -117,7 +117,7 @@ function mod.InitUi()
|
||||||
end
|
end
|
||||||
|
|
||||||
local status, err = pcall(function ()
|
local status, err = pcall(function ()
|
||||||
parallel.waitForAll(basalt.autoUpdate, updater.UpdateChecker)
|
parallel.waitForAll(basalt.autoUpdate)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
if not status and err ~= "Terminated" then
|
if not status and err ~= "Terminated" then
|
||||||
|
|
2
x.py
2
x.py
|
@ -56,7 +56,7 @@ def main():
|
||||||
print(f"=== FILE: {file}");
|
print(f"=== FILE: {file}");
|
||||||
buf += read_file(file);
|
buf += read_file(file);
|
||||||
|
|
||||||
buf += "require(\"main.lua\").Main()\n";
|
buf += "return require(\"main.lua\").Main\n";
|
||||||
|
|
||||||
if MINIMISE:
|
if MINIMISE:
|
||||||
buf = minimise(buf);
|
buf = minimise(buf);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user