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