From 56f710d49ceee59225f0bce63c7316e2d90633ab Mon Sep 17 00:00:00 2001 From: Laurie Fisher Date: Fri, 27 Jun 2025 14:26:58 +0100 Subject: [PATCH] test --- startup.lua | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/startup.lua b/startup.lua index f3790f9..2d27330 100644 --- a/startup.lua +++ b/startup.lua @@ -25,11 +25,9 @@ end -- Download each file for _, filename in ipairs(filesToDownload) do - if not fs.exists(filename) then - downloadFile(filename) - else - print(filename .. " already exists, skipping download.") - end + -- remove each file first + fs.remove(filename) + downloadFile(filename) end local behavior = require("behavior")