diff options
author | chriseth <chris@ethereum.org> | 2018-01-17 18:07:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 18:07:21 +0800 |
commit | 4715167ea2db09e21246a03c26fa07bbf0088212 (patch) | |
tree | d274d5adbe453f4d650c44fe67410ba3c4358296 | |
parent | fc7733c053b6964ded3827e5639de06624b11223 (diff) | |
parent | 1208fdb60fa6ce114899afa0563a3cce2900b577 (diff) | |
download | dexon-solidity-4715167ea2db09e21246a03c26fa07bbf0088212.tar.gz dexon-solidity-4715167ea2db09e21246a03c26fa07bbf0088212.tar.zst dexon-solidity-4715167ea2db09e21246a03c26fa07bbf0088212.zip |
Merge pull request #3403 from xManusx/deps_arch_linux
Made install_deps.sh safe to use on Arch Linux
-rwxr-xr-x | scripts/install_deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 34a6328b..6f55f071 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -137,7 +137,7 @@ case $(uname -s) in # All our dependencies can be found in the Arch Linux official repositories. # See https://wiki.archlinux.org/index.php/Official_repositories # Also adding ethereum-git to allow for testing with the `eth` client - sudo pacman -Sy \ + sudo pacman -Syu \ base-devel \ boost \ cmake \ |