diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-09-26 18:03:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 18:03:41 +0800 |
commit | 0398468051068720688199442f53984b4071f4b2 (patch) | |
tree | 198ed487f20ca1ede8ea8ce804aba2ec81593f13 /bin | |
parent | fb1a443ea8c527eebcb59bd8f8f52791ace6284b (diff) | |
download | dexon-consensus-0398468051068720688199442f53984b4071f4b2.tar dexon-consensus-0398468051068720688199442f53984b4071f4b2.tar.gz dexon-consensus-0398468051068720688199442f53984b4071f4b2.tar.bz2 dexon-consensus-0398468051068720688199442f53984b4071f4b2.tar.lz dexon-consensus-0398468051068720688199442f53984b4071f4b2.tar.xz dexon-consensus-0398468051068720688199442f53984b4071f4b2.tar.zst dexon-consensus-0398468051068720688199442f53984b4071f4b2.zip |
core: use dexon-foundation/dexon instead of ethereum/go-ethereum (#143)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/install_eth_dep.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/install_eth_dep.sh b/bin/install_eth_dep.sh index 79ecd0e..2e1b5ff 100755 --- a/bin/install_eth_dep.sh +++ b/bin/install_eth_dep.sh @@ -4,11 +4,11 @@ if [ -e .dep/libsecp256k1 ]; then exit 0 fi -rm -rf vendor/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1 +rm -rf vendor/github.com/dexon-foundation/dexon/crypto/secp256k1/libsecp256k1 if [ ! -d .dep/libsecp256k1 ]; then git init .dep/libsecp256k1 cd .dep/libsecp256k1 - git remote add origin https://github.com/ethereum/go-ethereum.git + git remote add origin https://github.com/dexon-foundation/dexon.git git config core.sparsecheckout true echo "crypto/secp256k1/libsecp256k1/*" >> .git/info/sparse-checkout cd ../../ @@ -17,4 +17,4 @@ cd .dep/libsecp256k1 git pull --depth=1 origin master cd ../../ cp -r .dep/libsecp256k1/crypto/secp256k1/libsecp256k1 \ - vendor/github.com/ethereum/go-ethereum/crypto/secp256k1 + vendor/github.com/dexon-foundation/dexon/crypto/secp256k1 |