github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/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.12/solc-static-linux"
     5  SOLC_BIN="$1"
     6  
     7  wget -O "$SOLC_BIN" "$SOLC_URL"
     8  
     9  chmod +x "$SOLC_BIN"