You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ "$SCOPES"=="" ] && [ DEFAULT_SCOPES !="" ];then
Snyk noticed this error, which does indeed look like a true positive.
Error: SHELLCHECK_WARNING (CWE-398):
examples/docker/kafka-oauth-strimzi/kafka/oauth.sh:101:44: warning[SC2050]: This expression is constant. Did you forget the $ on a variable?
# 99| fi
# 100|
# 101|-> if [ "$SCOPES" == "" ] && [ DEFAULT_SCOPES != "" ]; then
# 102| [ "$QUIET" == "" ] && >&2 echo "SCOPES not set. Using default value: ${DEFAULT_SCOPES}"
# 103| SCOPES="${DEFAULT_SCOPES}"