github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/tests/scripts/deps/solang.sh (about)

     1  #!/usr/bin/env bash
     2  set -e
     3  SOLANG_URL="https://github.com/hyperledger-labs/solang/releases/download/v0.1.7/solang-linux"
     4  SOLANG_BIN="$1"
     5  
     6  wget -O "$SOLANG_BIN" "$SOLANG_URL"
     7  
     8  chmod +x "$SOLANG_BIN"