diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-10-23 15:29:58 +0800 |
---|---|---|
committer | Wei-Ning Huang <aitjcize@gmail.com> | 2018-10-23 15:29:58 +0800 |
commit | 726e855384bf686b192f9d4b1c4cb0e9d006d414 (patch) | |
tree | d91bf3a4749af0801c09411b3ace8d79bea0d6ac /bin/install_dkg_dep.sh | |
parent | e79e91c31eaa08e69def8b204901004b3b85e828 (diff) | |
download | dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.gz dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.bz2 dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.lz dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.xz dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.tar.zst dexon-consensus-726e855384bf686b192f9d4b1c4cb0e9d006d414.zip |
Change BLS to dexon-foundation (#245)
Diffstat (limited to 'bin/install_dkg_dep.sh')
-rwxr-xr-x | bin/install_dkg_dep.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/install_dkg_dep.sh b/bin/install_dkg_dep.sh index 40ae2be..b426711 100755 --- a/bin/install_dkg_dep.sh +++ b/bin/install_dkg_dep.sh @@ -7,14 +7,12 @@ fi if [ ! -d .dep/dkg ]; then mkdir -p .dep/dkg cd .dep/dkg - git clone --depth 1 git://github.com/herumi/xbyak.git & - git clone --depth 1 git://github.com/herumi/cybozulib.git & - git clone --depth 1 --single-branch -b dev git://github.com/Spiderpowa/bls.git & - git clone --depth 1 git://github.com/herumi/mcl.git & + git clone --depth 1 --single-branch -b dev git://github.com/dexon-foundation/bls.git & + git clone --depth 1 git://github.com/dexon-foundation/mcl.git & wait cd bls make test_go -j cd ../../../ fi -cd vendor/github.com/Spiderpowa && rm -rf * +cd vendor/github.com/dexon-foundation && rm -rf bls mcl ln -s ../../../.dep/dkg/* . |