Closed evansmj closed 11 months ago
zsh has an expansion with '='. if you run source ./env.sh in zsh, it will error zsh: = not found. Using [[ ]] in the if statement is safer and results in== evaluating properly with [[ ]] conditionals.
source ./env.sh
zsh: = not found
==
zsh has an expansion with '='. if you run
source ./env.sh
in zsh, it will errorzsh: = not found
. Using [[ ]] in the if statement is safer and results in==
evaluating properly with [[ ]] conditionals.