feat: rig CLI — bootstrap, coolify install, curl installer #1

Merged
dan-claude-bot merged 8 commits from feat/rig into main 2026-07-11 08:34:50 +00:00
Showing only changes of commit d4697a0ad5 - Show all commits

View file

@ -17,7 +17,7 @@ check() {
printf '%s\n' "$out" | sed 's/^/ /'
FAIL=$((FAIL + 1)); return
fi
if [ -n "$substr" ] && ! printf '%s' "$out" | grep -qF "$substr"; then
if [ -n "$substr" ] && ! printf '%s' "$out" | grep -qF -e "$substr"; then
echo "FAIL: $desc — output missing '$substr'"
printf '%s\n' "$out" | sed 's/^/ /'
FAIL=$((FAIL + 1)); return