aboutsummaryrefslogtreecommitdiffstats
path: root/bin/install_dkg_dep.sh
blob: 4bdb9f1df9c3899fe88aa8042ec6f6d89093ad73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

if [ -e .dep/dkg ]; then
  exit 0
fi

if [ ! -d .dep/dkg ]; then
  mkdir -p .dep/dkg
  cd .dep/dkg
  git clone --depth 1 -b master git://github.com/tangerine-network/bls.git &
  git clone --depth 1 -b master git://github.com/tangerine-network/mcl.git &
  wait
  cd bls
  make test_go -j MCL_USE_OPENSSL=0
  cd ../../../
fi
cd vendor/github.com/tangerine-network && rm -rf bls mcl
ln -s ../../../.dep/dkg/* .