github nyldn/claude-octopus v8.23.3
v8.23.3 — Fix set-e silent crashes

latest releases: v9.29.1, v9.29.0, v9.28.0...
one month ago

Bug Fixes

  • fix: setup_wizard crashes silently on first step (#55) — ((current_step++)) from 0 returns falsy under set -e, killing the wizard before Step 1. Changed to pre-increment ((++current_step)) in all 10 occurrences
  • fix: status command exits with code 1 (#54) — [[ "$VERBOSE" == "true" ]] && log DEBUG ... returns exit 1 when VERBOSE is unset, crashing load_providers_config(). Added || true to all 19 unguarded instances
  • Preventive hardening — guarded 65 other bare ((var++)) patterns with || true to prevent the same class of crash across the script

Don't miss a new claude-octopus release

NewReleases is sending notifications on new releases.