diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-16 10:50:16 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-12-11 20:49:08 +0800 |
commit | 1734d4456189b4a313a07e7f3e24cb01f5057fc3 (patch) | |
tree | 3cbc303365f827a8c7f76cb7feb6eabfa821c9c7 /scripts | |
parent | 27f38fb5b31b9f0c228238cf0471155498b951b7 (diff) | |
download | dexon-solidity-1734d4456189b4a313a07e7f3e24cb01f5057fc3.tar dexon-solidity-1734d4456189b4a313a07e7f3e24cb01f5057fc3.tar.gz dexon-solidity-1734d4456189b4a313a07e7f3e24cb01f5057fc3.tar.bz2 dexon-solidity-1734d4456189b4a313a07e7f3e24cb01f5057fc3.tar.lz dexon-solidity-1734d4456189b4a313a07e7f3e24cb01f5057fc3.tar.xz dexon-solidity-1734d4456189b4a313a07e7f3e24cb01f5057fc3.tar.zst dexon-solidity-1734d4456189b4a313a07e7f3e24cb01f5057fc3.zip |
Rename jsonCompiler to libsolc
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bytecodecompare/storebytecode.sh | 2 | ||||
-rwxr-xr-x | scripts/test_emscripten.sh | 2 | ||||
-rwxr-xr-x | scripts/travis-emscripten/build_emscripten.sh | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/scripts/bytecodecompare/storebytecode.sh b/scripts/bytecodecompare/storebytecode.sh index 8d4100bf..557e3275 100755 --- a/scripts/bytecodecompare/storebytecode.sh +++ b/scripts/bytecodecompare/storebytecode.sh @@ -40,7 +40,7 @@ TMPDIR=$(mktemp -d) if [[ "$SOLC_EMSCRIPTEN" = "On" ]] then - cp "$REPO_ROOT/build/solc/soljson.js" . + cp "$REPO_ROOT/build/libsolc/soljson.js" . npm install solc cat > solc <<EOF #!/usr/bin/env node diff --git a/scripts/test_emscripten.sh b/scripts/test_emscripten.sh index 4996e957..b659e5e5 100755 --- a/scripts/test_emscripten.sh +++ b/scripts/test_emscripten.sh @@ -29,7 +29,7 @@ set -e REPO_ROOT=$(cd $(dirname "$0")/.. && pwd) -SOLJSON="$REPO_ROOT/build/solc/soljson.js" +SOLJSON="$REPO_ROOT/build/libsolc/soljson.js" DIR=$(mktemp -d) ( diff --git a/scripts/travis-emscripten/build_emscripten.sh b/scripts/travis-emscripten/build_emscripten.sh index bf460e8e..56826997 100755 --- a/scripts/travis-emscripten/build_emscripten.sh +++ b/scripts/travis-emscripten/build_emscripten.sh @@ -87,8 +87,8 @@ make -j 4 cd .. mkdir -p upload -cp build/solc/soljson.js upload/ -cp build/solc/soljson.js ./ +cp build/libsolc/soljson.js upload/ +cp build/libsolc/soljson.js ./ OUTPUT_SIZE=`ls -la soljson.js` |