mirror of
https://github.com/Alee14/bits-UI.git
synced 2025-01-22 10:41:58 -05:00
10 lines
241 B
Lua
10 lines
241 B
Lua
if fs.exists("/boot/ccboot/boot.lua") then
|
|
shell.run("boot/ccboot/boot.lua");
|
|
else
|
|
term.clear()
|
|
term.setCursorPos(1,1)
|
|
term.setTextColor(colors.red)
|
|
print("CCBoot doesn't exist halting...")
|
|
sleep(2)
|
|
os.shutdown()
|
|
end
|