golem-cc 0.1.25 → 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/golem +3 -0
- package/package.json +1 -1
package/bin/golem
CHANGED
|
@@ -493,6 +493,9 @@ run_build_loop() {
|
|
|
493
493
|
local max_iterations="$1"
|
|
494
494
|
local simplify="$2"
|
|
495
495
|
|
|
496
|
+
# Handle Ctrl+C gracefully
|
|
497
|
+
trap 'echo ""; echo -e "${YELLOW} Build interrupted by user${NC}"; log_event "BUILD_INTERRUPTED" "User cancelled"; exit 130' INT
|
|
498
|
+
|
|
496
499
|
print_banner
|
|
497
500
|
|
|
498
501
|
# Verify prerequisites
|