aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2019-03-05 21:26:26 -0500
committerAndrew Lee <alee14498@gmail.com>2019-03-05 21:26:26 -0500
commitab94bab7e3d45b58084388b0cd5d247790a00005 (patch)
tree84846500901ab898b985e36561960553427c78bf
parent6f9fb8cac10cfdf23e7ca3a154e501848c4b0674 (diff)
downloadbits-UI-ab94bab7e3d45b58084388b0cd5d247790a00005.tar.gz
bits-UI-ab94bab7e3d45b58084388b0cd5d247790a00005.tar.bz2
bits-UI-ab94bab7e3d45b58084388b0cd5d247790a00005.zip
Readme will now be in the documents folder
-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)