diff options
Diffstat (limited to 'bin/install_eth_dep.sh')
-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 |