a2848f6d67f40f57e201b7c73b12b837b40bb7d3
[ -f "$f" ] && rm -f "$f" && info "..." returns exit code 1 when the file doesn't exist, triggering set -euo pipefail. Nuclear wipe was silently stopping after settings.json and metrics.db (the only two state files present), never reaching the controller/full/nuclear steps. Fix: if [ -f "$f" ]; then rm -f "$f" && info "..."; fi Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Description
No description provided
Languages
Go
66.8%
HTML
22.8%
Shell
5.7%
CSS
4.3%
Dockerfile
0.2%
Other
0.2%