mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
cleanup
This commit is contained in:
parent
4421cbc0c5
commit
c870b749a4
@ -180,7 +180,7 @@ local function clean(manifest)
|
|||||||
yellow();println("skipped mount '" .. val .. "'")
|
yellow();println("skipped mount '" .. val .. "'")
|
||||||
elseif fs.isDir(val) then
|
elseif fs.isDir(val) then
|
||||||
if tree[val] ~= nil then lgray();_clean_dir("/" .. val, tree[val])
|
if tree[val] ~= nil then lgray();_clean_dir("/" .. val, tree[val])
|
||||||
else white();if ask_y_n("delete the unused directory '" .. val .. "'") then lgray();_clean_dir("/" .. val) end end
|
else white(); if ask_y_n("delete the unused directory '" .. val .. "'") then lgray();_clean_dir("/" .. val) end end
|
||||||
if #fs.list(val) == 0 then fs.delete(val);lgray();println("deleted empty directory '" .. val .. "'") end
|
if #fs.list(val) == 0 then fs.delete(val);lgray();println("deleted empty directory '" .. val .. "'") end
|
||||||
elseif not _in_array(val, tree) and (string.find(val, ".settings") == nil) then
|
elseif not _in_array(val, tree) and (string.find(val, ".settings") == nil) then
|
||||||
white();if ask_y_n("delete the unused file '" .. val .. "'") then fs.delete(val);lgray();println("deleted " .. val) end
|
white();if ask_y_n("delete the unused file '" .. val .. "'") then fs.delete(val);lgray();println("deleted " .. val) end
|
||||||
|
Loading…
Reference in New Issue
Block a user