aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/post-setup.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/system/post-setup.lua b/system/post-setup.lua
index 4eb3712..9328a58 100644
--- a/system/post-setup.lua
+++ b/system/post-setup.lua
@@ -17,16 +17,16 @@ term.clear()
term.setCursorPos(1,1)
term.setTextColor(colors.white)
+fs.makeDir("/home/Documents")
+fs.makeDir("/home/Downloads")
+fs.makeDir("/home/Pictures")
+
if fs.exists("/system/skel/README.txt") then
- shell.run("copy", "/system/skel/README.txt", "/home")
+ shell.run("copy", "/system/skel/README.txt", "/home/Documents")
else
print("[ERROR] Unable to find README.txt...")
end
-fs.makeDir("/home/Documents")
-fs.makeDir("/home/Downloads")
-fs.makeDir("/home/Pictures")
-
print("Welcome to the setup!")
sleep(3)