diff options
author | chriseth <chris@ethereum.org> | 2017-10-18 17:30:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-18 17:30:56 +0800 |
commit | e247524bd563371e2ed2b871a0185ad033c1de24 (patch) | |
tree | 94926efc8fcf624958c36fe92c3bbfdf673d59de | |
parent | 4a9a986d8cf2e457ab1b36e20bcbefb714292a37 (diff) | |
parent | 9d5c96ebdd9d118830458877682a746ab0c73fdc (diff) | |
download | dexon-solidity-e247524bd563371e2ed2b871a0185ad033c1de24.tar.gz dexon-solidity-e247524bd563371e2ed2b871a0185ad033c1de24.tar.zst dexon-solidity-e247524bd563371e2ed2b871a0185ad033c1de24.zip |
Merge pull request #3090 from ethereum/noprepublish
Disable prepublish script in test.
-rwxr-xr-x | scripts/test_emscripten.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/test_emscripten.sh b/scripts/test_emscripten.sh index b01b33bb..4996e957 100755 --- a/scripts/test_emscripten.sh +++ b/scripts/test_emscripten.sh @@ -36,6 +36,10 @@ DIR=$(mktemp -d) echo "Preparing solc-js..." git clone --depth 1 https://github.com/ethereum/solc-js "$DIR" cd "$DIR" + # disable "prepublish" script which downloads the latest version + # (we will replace it anyway and it is often incorrectly cached + # on travis) + npm config set script.prepublish '' npm install # Replace soljson with current build |