We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebb8e76 commit 30d4a4eCopy full SHA for 30d4a4e
op-batcher/enclave-entrypoint.bash
@@ -126,9 +126,8 @@ while [ $# -gt 0 ]; do
126
value="$1"
127
fi
128
129
- # SPECIAL CASE: espresso-url may be a comma list. Either split here,
130
- # or (simpler) pass the flag twice at build time. See note below.
131
- if [[ "$flag" == "--espresso-url" && "$value" == *","* ]]; then
+ # Handle comma-separated values for any flag
+ if [[ "$value" == *","* ]]; then
132
IFS=',' read -r -a parts <<< "$value"
133
for part in "${parts[@]}"; do
134
if ! new_url=$(launch_socat "$part" "$SOCAT_PORT"); then
0 commit comments