diff options
author | chriseth <chris@ethereum.org> | 2016-10-14 17:57:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-14 17:57:32 +0800 |
commit | 2d9109ba453d49547778c39a506b0ed492305c16 (patch) | |
tree | f9a6f660aebbd36fd9081a769fdc96171057ca2d /scripts | |
parent | 1f0f60087828dfd74d65fa23c4789635928997ca (diff) | |
parent | 4825cdb62e6fb737ac6ac4436ec39973c28e2eda (diff) | |
download | dexon-solidity-2d9109ba453d49547778c39a506b0ed492305c16.tar.gz dexon-solidity-2d9109ba453d49547778c39a506b0ed492305c16.tar.zst dexon-solidity-2d9109ba453d49547778c39a506b0ed492305c16.zip |
Merge pull request #1196 from ethereum/solc-bin-publish-update
solc-bin publish script should let the update script decide which files changed
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis-emscripten/publish_binary.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/travis-emscripten/publish_binary.sh b/scripts/travis-emscripten/publish_binary.sh index e2cc1eea..236d976a 100755 --- a/scripts/travis-emscripten/publish_binary.sh +++ b/scripts/travis-emscripten/publish_binary.sh @@ -84,8 +84,6 @@ fi # This file is assumed to be the product of the build_emscripten.sh script. cp ../soljson.js ./bin/"soljson-$FULLVERSION.js" node ./update -cd bin -git add . -git add ../soljson.js -git commit -m "Added compiler version $FULLVERSION" +git add ./bin/"soljson-$FULLVERSION.js" +git commit -a -m "Added compiler version $FULLVERSION" git push origin gh-pages |