From 2895690914d3130b7ea7149c00f43fbbccad47ce Mon Sep 17 00:00:00 2001 From: brulijam Date: Sat, 8 Jun 2024 21:51:19 +0200 Subject: [PATCH] . --- src/brulijam/sync.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)