diff options
author | chriseth <chris@ethereum.org> | 2017-03-20 19:07:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-20 19:07:35 +0800 |
commit | acf71db9f6b31031daf3fcef7bfbeff3900ddb15 (patch) | |
tree | fe4062c98b95477f011c02e8c00d68e251507088 /scripts | |
parent | c37397c17871591bb897ca6f390a315f2ad0b030 (diff) | |
download | dexon-solidity-acf71db9f6b31031daf3fcef7bfbeff3900ddb15.tar.gz dexon-solidity-acf71db9f6b31031daf3fcef7bfbeff3900ddb15.tar.zst dexon-solidity-acf71db9f6b31031daf3fcef7bfbeff3900ddb15.zip |
Fixes spacing around condition.
Diffstat (limited to 'scripts')
-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 |