aboutsummaryrefslogtreecommitdiff
path: root/startup.lua
blob: f0dd84dffa597e04d28c7efc0d69bd57559defbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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