Update installer.lua

This commit is contained in:
CadenCoaster
2025-10-23 21:27:36 -07:00
committed by GitHub
parent bfe8bddf37
commit d3fd03a069

View File

@@ -13,8 +13,8 @@ local function download_to(url,path)
print(" OK")
end
write("Do you want to setup netmount?\n(Y/n)")
local netmount = read():sub(1,1):lower() == "n"
write("Do you want to setup netmount?\n(Y/n) ")
local netmount = read():sub(1,1):lower() ~= "n"
if netmount then
write("URL: ")
@@ -46,4 +46,4 @@ download_to("https://github.com/cadenthecreator/ccde/raw/refs/heads/main/.wallpa
if netmount then
download_to("https://github.com/cadenthecreator/ccde/raw/refs/heads/main/modules/netmount.lua","modules/netmount.lua")
end
end