mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-03-17 10:33:08 +00:00
Fix empty array crash on bash 3.2 in setup-ralph-loop.sh
This commit is contained in:
@@ -110,7 +110,7 @@ HELP_EOF
|
||||
done
|
||||
|
||||
# Join all prompt parts with spaces
|
||||
PROMPT="${PROMPT_PARTS[*]}"
|
||||
PROMPT="${PROMPT_PARTS[*]:-}"
|
||||
|
||||
# Validate prompt is non-empty
|
||||
if [[ -z "$PROMPT" ]]; then
|
||||
|
||||
Reference in New Issue
Block a user