diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-11-09 11:32:53 +0800 |
---|---|---|
committer | Jimmy Hu <jimmy.hu@dexon.org> | 2019-04-13 20:54:32 +0800 |
commit | 0957231a8ed1990baacd67f48c3d3550b5250733 (patch) | |
tree | c1e5919019493d95f458ae023d1ccfabc03d0d8b | |
parent | 10d17f245839f208ec5085309022a32cd2502f55 (diff) | |
download | dexon-solidity-0957231a8ed1990baacd67f48c3d3550b5250733.tar.gz dexon-solidity-0957231a8ed1990baacd67f48c3d3550b5250733.tar.zst dexon-solidity-0957231a8ed1990baacd67f48c3d3550b5250733.zip |
Modify for release
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | scripts/travis-emscripten/publish_binary.sh | 10 |
2 files changed, 6 insertions, 5 deletions
@@ -38,6 +38,7 @@ docs/utils/*.pyc /deps/downloads/ deps/install deps/cache +boost_* # vim stuff [._]*.sw[a-p] diff --git a/scripts/travis-emscripten/publish_binary.sh b/scripts/travis-emscripten/publish_binary.sh index 7bf6f369..dd23330b 100755 --- a/scripts/travis-emscripten/publish_binary.sh +++ b/scripts/travis-emscripten/publish_binary.sh @@ -3,7 +3,7 @@ #------------------------------------------------------------------------------ # Bash script for publishing Solidity Emscripten binaries to Github. # -# The results are committed to https://github.com/ethereum/solc-bin. +# The results are committed to https://github.com/dexon-foundation/dsolc-bin. # # The documentation for solidity is hosted at: # @@ -48,10 +48,10 @@ chmod 600 deploy_key eval `ssh-agent -s` ssh-add deploy_key -git clone --depth 2 git@github.com:ethereum/solc-bin.git -cd solc-bin -git config user.name "travis" -git config user.email "chris@ethereum.org" +git clone --depth 2 git@github.com:dexon-foundation/dsolc-bin.git +cd dsolc-bin +git config user.name "Jimmy Hu" +git config user.email "jimmy.hu@dexon.org" git checkout -B gh-pages origin/gh-pages git clean -f -d -x |