tornado-deploy/build.sh

30 lines
362 B
Bash
Raw Permalink Normal View History

2020-12-15 16:10:11 +01:00
#!/bin/bash -e
# expecting node v12
cd deployer
yarn
yarn compile
cd ..
cd torn-token
2020-12-18 00:38:30 +01:00
yarn unlink || true
2020-12-15 16:10:11 +01:00
yarn link
yarn
yarn compile
cd ..
2020-12-15 16:21:42 +01:00
cd tornado-governance
2020-12-15 16:10:11 +01:00
yarn link torn-token
yarn
yarn compile
cd ..
cd tornado-anonymity-mining
yarn link torn-token
yarn
2020-12-17 22:07:37 +01:00
if [[ ! -f "build/circuits/TreeUpdateVerifier.sol" ]]; then
2020-12-15 16:10:11 +01:00
yarn circuit
fi
yarn compile
cd ..