Skip to content

Commit

Permalink
fix: use POSIX compatible comparison operator (#89)
Browse files Browse the repository at this point in the history
Co-authored-by: Brendt Lucas <brendt.lucas@nearform.com>
  • Loading branch information
blucas and Brendt Lucas committed Mar 3, 2023
1 parent 86db24c commit 231c3cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export KKA_DEPLOY_MINIMAL="${KKA_DEPLOY_MINIMAL:-false}"
# Istio
export KKA_AOA_EXCLUDE_ISTIO="${KKA_AOA_EXCLUDE_ISTIO:-false}"
# Knative depends on Istio by default, if we exclude it we exclude Knative as well
if [ "${KKA_AOA_EXCLUDE_ISTIO}" == "true" ]; then
if [ "${KKA_AOA_EXCLUDE_ISTIO}" = "true" ]; then
export KKA_AOA_EXCLUDE_KNATIVE="true"
else
export KKA_AOA_EXCLUDE_KNATIVE="${KKA_AOA_EXCLUDE_KNATIVE:-false}"
Expand Down

0 comments on commit 231c3cc

Please sign in to comment.