feat : Stripped OS exit codes from patch builder loop

This commit is contained in:
2026-04-22 04:41:11 +08:00
parent cfae123c81
commit c496707bb1
-2
View File
@@ -9,14 +9,12 @@ func _initialize():
if not FileAccess.file_exists(changed_files_txt):
print("ERROR: missing changed_files.txt. Cannot build patch.")
OS.set_exit_code(1)
return
var pck_packer = PCKPacker.new()
var err = pck_packer.pck_start(output_file)
if err != OK:
print("ERROR: Could not start PCK file: ", output_file)
OS.set_exit_code(1)
return
var file = FileAccess.open(changed_files_txt, FileAccess.READ)