diff options
author | chriseth <chris@ethereum.org> | 2018-02-10 01:08:29 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-02-10 01:24:12 +0800 |
commit | 937f16afef910f6faf1e29a7dafb5c7c699e4de9 (patch) | |
tree | 0b32b3357a03e4ea24f80f05ecfbf756bbca31dc /test/solcjsTests.sh | |
parent | 981ff308ecfbd596d7f94852462591316bcaa2e7 (diff) | |
download | dexon-solidity-937f16afef910f6faf1e29a7dafb5c7c699e4de9.tar.gz dexon-solidity-937f16afef910f6faf1e29a7dafb5c7c699e4de9.tar.zst dexon-solidity-937f16afef910f6faf1e29a7dafb5c7c699e4de9.zip |
Handle version for solcjs tests.
Diffstat (limited to 'test/solcjsTests.sh')
-rwxr-xr-x | test/solcjsTests.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/solcjsTests.sh b/test/solcjsTests.sh index b6d2a017..27797cb4 100755 --- a/test/solcjsTests.sh +++ b/test/solcjsTests.sh @@ -28,13 +28,14 @@ set -e -if [ ! -f "$1" ] +if [ ! -f "$1" -o -z "$2" ] then - echo "Usage: $0 <path to soljson.js>" + echo "Usage: $0 <path to soljson.js> <version>" exit 1 fi SOLJSON="$1" +VERSION="$2" DIR=$(mktemp -d) ( @@ -53,7 +54,6 @@ DIR=$(mktemp -d) cp "$SOLJSON" soljson.js # Update version (needed for some tests) - VERSION=$("$REPO_ROOT/scripts/get_version.sh") echo "Updating package.json to version $VERSION" npm version --no-git-tag-version $VERSION |