diff options
-rwxr-xr-x | scripts/install_deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 7cfc92f2..81cde14c 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -96,7 +96,7 @@ case $(uname -s) in brew update brew install boost brew install cmake - if ["$CI" = true]; then + if [ "$CI" = true ]; then brew upgrade cmake brew tap ethereum/ethereum brew install cpp-ethereum @@ -394,4 +394,4 @@ case $(uname -s) in echo "If you would like to get your operating system working, that would be fantastic." echo "Drop us a message at https://gitter.im/ethereum/solidity." ;; -esac
\ No newline at end of file +esac |