Skip to content

Commit

Permalink
Fix missing $ in bash script (Issue #240) (#243)
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Strukelj <marko.strukelj@gmail.com>
  • Loading branch information
mstruk authored Jul 3, 2024
1 parent d76e2b1 commit 8909513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/docker/kafka-oauth-strimzi/kafka/oauth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ else
USER_PASS_CLIENT="&username=${UNAME}&password=${PASS}&client_id=${CLIENT_ID}"
fi

if [ "$SCOPES" == "" ] && [ DEFAULT_SCOPES != "" ]; then
if [ "$SCOPES" == "" ] && [ "$DEFAULT_SCOPES" != "" ]; then
[ "$QUIET" == "" ] && >&2 echo "SCOPES not set. Using default value: ${DEFAULT_SCOPES}"
SCOPES="${DEFAULT_SCOPES}"
fi
Expand Down

0 comments on commit 8909513

Please sign in to comment.