Update upgraded.lua

Kind of make the program look better as the 'sys/apis' line is the only one not to do fs.exists. Also fixes error when opus is nested inside a potatOS instance.
This commit is contained in:
Kan18 2019-07-25 23:04:20 -04:00 committed by GitHub
parent b3efbc7438
commit 9c4aac27f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 11 deletions

View File

@ -1,14 +1,20 @@
local fs = _G.fs
local function deleteIfExists(path)
if fs.exists(path) then
fs.delete(path)
print("Deleted outdated file at: "..path)
end
end
-- cleanup outdated files
fs.delete('sys/apps/shell')
fs.delete('sys/etc/app.db')
fs.delete('sys/extensions')
fs.delete('sys/network')
fs.delete('startup')
fs.delete('sys/apps/system/turtle.lua')
fs.delete('sys/autorun/gps.lua')
fs.delete('sys/autorun/gpshost.lua')
fs.delete('sys/apps/network/redserver.lua')
if fs.exists('sys/apis') then fs.delete('sys/apis') end
fs.delete('sys/autorun/apps.lua')
deleteIfExists('sys/apps/shell')
deleteIfExists('sys/etc/app.db')
deleteIfExists('sys/extensions')
deleteIfExists('sys/network')
deleteIfExists('startup')
deleteIfExists('sys/apps/system/turtle.lua')
deleteIfExists('sys/autorun/gps.lua')
deleteIfExists('sys/autorun/gpshost.lua')
deleteIfExists('sys/apps/network/redserver.lua')
deleteIfExists('sys/apis')
deleteIfExists('sys/autorun/apps.lua')