@@ -251,9 +251,10 @@ function UpdateOrInstall.updateFiles(archiveFolderPath)
251
251
252
252
local result = os.execute (command )
253
253
if not (result == true or result == 0 ) then -- true / 0 = successful
254
- print (" > ERROR : " .. err1 )
254
+ print (" > WARNING : " .. err1 )
255
255
print (" > " .. err2 )
256
- return false
256
+ -- Always return true now that the new XCOPY succeeds regardless of error
257
+ return true
257
258
end
258
259
259
260
return true
@@ -337,14 +338,13 @@ function UpdateOrInstall.buildDownloadExtractCommand(tarUrl, archive, extractedF
337
338
end
338
339
339
340
-- Returns a string of batch commands to run based on the operating system, also returns error messages
340
- -- TODO: Known issue is XCOPY seems to fail if Tracker is kept on OneDrive or in a secure folder
341
341
function UpdateOrInstall .buildCopyFilesCommand (extractedFolder , isOnWindows )
342
342
local messages = {
343
343
filesready = " New release files downloaded and ready for update." ,
344
344
updating = " Applying the update, copying over files." ,
345
345
completed = " Version update completed successfully." ,
346
- error1 = " Unable to copy over and update Tracker files ." ,
347
- error2 = string.format (' Try restarting the emulator and loading ONLY the "%s" script.' , UpdateOrInstall .thisFileName ),
346
+ error1 = " Some Tracker image files were skipped during the update, but everything will still work just fine ." ,
347
+ error2 = string.format (" You can restore these files by restarting the emulator and loading the '%s' script." , UpdateOrInstall .thisFileName ),
348
348
}
349
349
350
350
local batchCommands = {}
0 commit comments