Update install/installcc.lua

This commit is contained in:
2026-03-12 11:51:55 -04:00
parent 8762b8f022
commit 5e3cdbe40c

View File

@@ -4,12 +4,6 @@ term.clear()
print("Do you want to install HyperionOS? [Y/n]") print("Do you want to install HyperionOS? [Y/n]")
local input=read() local input=read()
if input=="y" or input=="Y" or input=="" then if input=="y" or input=="Y" or input=="" then
goto install
else
goto exit
end
::install::
print("Installing tar but bad...") print("Installing tar but bad...")
shell.run("wget https://git.astronand.dev/Hyperion/HyperionOS/raw/branch/1.2-dev/install/data/tarbad /tar.lua") shell.run("wget https://git.astronand.dev/Hyperion/HyperionOS/raw/branch/1.2-dev/install/data/tarbad /tar.lua")
print("Installing HyperionOS...") print("Installing HyperionOS...")
@@ -24,4 +18,4 @@ shell.run("rm Build")
shell.run("rm Build.tar") shell.run("rm Build.tar")
fs.copy("/$/boot/cct/eeprom","/startup.lua") fs.copy("/$/boot/cct/eeprom","/startup.lua")
dofile("startup.lua") dofile("startup.lua")
::exit:: end