compile.sh 176 B

12345678910
  1. #!/usr/bin/env sh
  2. if [ "$SOLC_NIGHTLY" = true ]; then
  3. docker pull ethereum/solc:nightly
  4. fi
  5. # Necessary to avoid an error in Truffle
  6. rm -rf build/contracts
  7. truffle compile