diff options
author | William Entriken <github.com@phor.net> | 2018-01-24 10:33:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 10:33:22 +0800 |
commit | a8e7637faa612c14bca80c8eb18a9d6742fc4f7c (patch) | |
tree | 9831a94aed54eb824e80721e3783679321f24a34 /scripts | |
parent | 31aaf4336a5856e98475e2f66beb37eae271de90 (diff) | |
download | dexon-solidity-a8e7637faa612c14bca80c8eb18a9d6742fc4f7c.tar.gz dexon-solidity-a8e7637faa612c14bca80c8eb18a9d6742fc4f7c.tar.zst dexon-solidity-a8e7637faa612c14bca80c8eb18a9d6742fc4f7c.zip |
Support macOS High Sierra for install_deps script
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install_deps.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index a8966f96..d62cffb7 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -84,9 +84,12 @@ case $(uname -s) in 10.12) echo "Installing solidity dependencies on macOS 10.12 Sierra." ;; + 10.13) + echo "Installing solidity dependencies on macOS 10.13 High Sierra." + ;; *) echo "Unsupported macOS version." - echo "We only support Mavericks, Yosemite and El Capitan, with work-in-progress on Sierra." + echo "We only support Mavericks, Yosemite, El Capitan, Sierra and High Sierra." exit 1 ;; esac |