diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-09-23 20:51:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 20:51:05 +0800 |
commit | 0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89 (patch) | |
tree | 626db6969aee92702001e5c9f3de56e2a439ccac /bin | |
parent | 2c71e8448a9c03e924a7869351eebf2def1af057 (diff) | |
download | dexon-consensus-0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89.tar dexon-consensus-0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89.tar.gz dexon-consensus-0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89.tar.bz2 dexon-consensus-0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89.tar.lz dexon-consensus-0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89.tar.xz dexon-consensus-0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89.tar.zst dexon-consensus-0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89.zip |
core: run first DKG at startup. (#129)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/install_dkg_dep.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/install_dkg_dep.sh b/bin/install_dkg_dep.sh index 9120941..af5e83e 100755 --- a/bin/install_dkg_dep.sh +++ b/bin/install_dkg_dep.sh @@ -10,7 +10,7 @@ if [ ! -d .dep/dkg ]; then 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 git://github.com/herumi/bls.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 & wait if [ "$(uname -o)" = "Darwin" ] && [ "$(brew --prefix)" != "/usr/local" ]; then @@ -23,7 +23,7 @@ if [ ! -d .dep/dkg ]; then cd ../../../ fi cp -r .dep/dkg/* \ - vendor/github.com/herumi -mkdir lib > /dev/null + vendor/github.com/Spiderpowa +mkdir -p lib cd lib -ln -s ../vendor/github.com/herumi/bls/lib/* . +ln -sf ../vendor/github.com/Spiderpowa/bls/lib/* . |