diff options
| author | Andrew Lee <alee14498@gmail.com> | 2019-03-05 21:26:26 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@gmail.com> | 2019-03-05 21:26:26 -0500 |
| commit | ab94bab7e3d45b58084388b0cd5d247790a00005 (patch) | |
| tree | 84846500901ab898b985e36561960553427c78bf /system | |
| parent | 6f9fb8cac10cfdf23e7ca3a154e501848c4b0674 (diff) | |
| download | bits-UI-ab94bab7e3d45b58084388b0cd5d247790a00005.tar.gz bits-UI-ab94bab7e3d45b58084388b0cd5d247790a00005.tar.bz2 bits-UI-ab94bab7e3d45b58084388b0cd5d247790a00005.zip | |
Readme will now be in the documents folder
Diffstat (limited to 'system')
| -rw-r--r-- | system/post-setup.lua | 10 |
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) |
