i might be stupid :(
This commit is contained in:
parent
c47f089395
commit
591a61d67e
|
@ -27,7 +27,7 @@ rawset(__BUNDLER_FILES, "updater.lua", function ()
|
|||
--make backup
|
||||
fs.copy("startup.lua","backup.lua")
|
||||
local startup_file = fs.open("startup.lua", "r")
|
||||
local startup_contents = file.readAll()
|
||||
local startup_contents = startup_file.readAll()
|
||||
file.close()
|
||||
if update_code_text ~= startup_contents then
|
||||
local file = fs.open("startup.lua", "w")
|
||||
|
|
|
@ -20,8 +20,8 @@ local function checkForUpdate()
|
|||
fs.copy("startup.lua","backup.lua")
|
||||
|
||||
local startup_file = fs.open("startup.lua", "r")
|
||||
local startup_contents = file.readAll()
|
||||
file.close()
|
||||
local startup_contents = startup_file.readAll()
|
||||
startup_file.close()
|
||||
|
||||
if update_code_text ~= startup_contents then
|
||||
local file = fs.open("startup.lua", "w")
|
||||
|
|
Loading…
Reference in New Issue
Block a user