Skip to content

Commit

Permalink
fix: fixes the cmode parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Jniklas2 <[email protected]>
  • Loading branch information
Jniklas2 committed Oct 19, 2024
1 parent 784c36f commit 69d544e
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 69d544e

Please sign in to comment.