@update.lua
10 lines · 255 B
Alias: delegates to update.lua in this collection
Copy & run
wget https://perlytiara.github.io/turtles.tips/raw/programs/BigGamingGamers/@update.lua
| 1 | -- Alias: delegates to update.lua in this collection |
| 2 | local target = "/programs/BigGamingGamers/update.lua" |
| 3 | if fs.exists(target) then |
| 4 | shell.run(target, table.unpack(arg)) |
| 5 | else |
| 6 | print("Missing " .. target .. " — ensure files are installed.") |
| 7 | end |
| 8 | |
| 9 | |
| 10 |