blob: 56ac6b3ef9e2c9ede3c0afa6877c66af0f7fc7f7 (
plain) (
tree)
|
|
#!/bin/bash
if [ -e .dep/dkg ]; then
exit 0
fi
rm -rf vendor/github.com/herumi/*
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 &
wait
cd bls
make test_go -j
cd ../../../
fi
cp -r .dep/dkg/* vendor/github.com/Spiderpowa
|