Fix test environment script to enable sourcing from other shells.

The `cli-test-env.sh` script has a `==` comparison operator, which is a
non-POSIX extension.

This commit replaces it with the `=` POSIX operator, enabling it to be sourced
from a wider variety of shells (namely zsh for this commit's author).
This commit is contained in:
Peter Huene 2017-12-21 12:04:10 -05:00
parent b9457c0f16
commit b456668193
No known key found for this signature in database
GPG key ID: E1D265D820213D6A

View file

@ -14,7 +14,7 @@ done
REPO_ROOT="$( cd -P "$( dirname "$SOURCE" )/../" && pwd )"
uname=$(uname)
if [ "$(uname)" == "Darwin" ]
if [ "$(uname)" = "Darwin" ]
then
RID=osx.10.13-x64
else