From 1e70c23c11aee3d2356fe92c20f16a5bcb14cc91 Mon Sep 17 00:00:00 2001 From: argenis de la rosa Date: Thu, 26 Feb 2026 20:59:21 -0500 Subject: [PATCH] fix(bootstrap): initialize container arrays under set -u --- scripts/bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 8af9ff139..48ef45594 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -685,6 +685,8 @@ is_zeroclaw_resource_name() { maybe_stop_running_zeroclaw_containers() { local -a running_ids running_rows local id name image command row + running_ids=() + running_rows=() while IFS=$'\t' read -r id name image command; do if [[ -z "$id" ]]; then