From d3fd03a06921c4925e4dd3b0631c9b8843c6d46b Mon Sep 17 00:00:00 2001 From: CadenCoaster <114967401+cadenthecreator@users.noreply.github.com> Date: Thu, 23 Oct 2025 21:27:36 -0700 Subject: [PATCH] Update installer.lua --- installer.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer.lua b/installer.lua index 11c1810..486857e 100644 --- a/installer.lua +++ b/installer.lua @@ -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 \ No newline at end of file +end