From 0ab5a2d4f63ece79a4df32c6fb3ac710a954fd89 Mon Sep 17 00:00:00 2001 From: Jimmy Hu Date: Sun, 23 Sep 2018 20:51:05 +0800 Subject: core: run first DKG at startup. (#129) --- bin/install_dkg_dep.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin') 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/* . -- cgit