diff options
author | Paweł Bylica <chfast@gmail.com> | 2017-09-12 20:39:30 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2017-09-13 04:11:21 +0800 |
commit | 622a2d8251b467ded5a3134349198005f44faf6a (patch) | |
tree | a1bbcbb897207e1f73aebd7a910a4ec7b3836e12 /test/externalTests.sh | |
parent | dc8754b5955c48d0434d60382823c795b14c473e (diff) | |
download | dexon-solidity-622a2d8251b467ded5a3134349198005f44faf6a.tar.gz dexon-solidity-622a2d8251b467ded5a3134349198005f44faf6a.tar.zst dexon-solidity-622a2d8251b467ded5a3134349198005f44faf6a.zip |
Travis CI: Fix Emscripten build
Diffstat (limited to 'test/externalTests.sh')
-rwxr-xr-x | test/externalTests.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/externalTests.sh b/test/externalTests.sh index 1b74561b..6ff2ebc5 100755 --- a/test/externalTests.sh +++ b/test/externalTests.sh @@ -38,10 +38,9 @@ SOLJSON="$1" DIR=$(mktemp -d) ( - cd "$DIR" echo "Running Zeppelin tests..." - git clone https://github.com/OpenZeppelin/zeppelin-solidity.git - cd zeppelin-solidity + git clone --depth 1 https://github.com/OpenZeppelin/zeppelin-solidity.git "$DIR" + cd "$DIR" npm install cp "$SOLJSON" ./node_modules/solc/soljson.js npm run test |