From c496707bb1a3e12fffda80ac6630af0c56a1786c Mon Sep 17 00:00:00 2001 From: adtpdn Date: Wed, 22 Apr 2026 04:41:11 +0800 Subject: [PATCH] feat : Stripped OS exit codes from patch builder loop --- tools/build_patch.gd | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/build_patch.gd b/tools/build_patch.gd index 207a04e..5dc813f 100644 --- a/tools/build_patch.gd +++ b/tools/build_patch.gd @@ -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)