github.com/tri-stone/burrow@v0.25.0/tests/scripts/deps/solc.sh (about)

     1  #!/usr/bin/env bash
     2  set -e
     3  # Static solc that will run on linux included Alpine
     4  SOLC_URL="https://github.com/ethereum/solidity/releases/download/v0.5.4/solc-static-linux"
     5  SOLC_BIN="$1"
     6  
     7  wget -O "$SOLC_BIN" "$SOLC_URL"
     8  
     9  chmod +x "$SOLC_BIN"