Skip to content

Commit

Permalink
chore: update cmode parameter in entrypoint.sh
Browse files Browse the repository at this point in the history
Remove unnecessary quotes and use the correct syntax for the cmode parameter in entrypoint.sh.

Co-authored-by: Jniklas2 <[email protected]>
Signed-off-by: Jniklas2 <[email protected]>
  • Loading branch information
Jniklas2 committed Oct 19, 2024
1 parent 705433e commit fad8c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ if [ "$ALLOW_FETCH" = true ]; then
fi

if [ "$ENABLE_CONCURRENT" = true ]; then
ARGS+=('--cmode=concurrent')
ARGS+=(--cmode concurrent)
else
ARGS+=('--cmode=legacy')
ARGS+=(--cmode legacy)
fi

ARGS+=(
Expand Down

0 comments on commit fad8c0e

Please sign in to comment.