diff --git a/src/brulijam/sync.lua b/src/brulijam/sync.lua index 070728f..85a9673 100644 --- a/src/brulijam/sync.lua +++ b/src/brulijam/sync.lua @@ -24,13 +24,13 @@ local copyList = { } -print("[Syncing]") +print("[Syncing start]") for i=0, #copyList do getRequest = http.get(prefix .. copyList[i]) - print("Downloaded " .. copyList[i]) + print("[wget] " .. copyList[i]) file = fs.open(copyList[i], "w") file.write(getRequest.readAll()) file.close() end -print("[Sync complete]") +print("[Sync end]") sleep(1)