mirror of
https://github.com/tornadocash/tornado-deploy.git
synced 2025-01-15 15:41:05 +01:00
30 lines
354 B
Bash
Executable File
30 lines
354 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# expecting node v12
|
|
cd deployer
|
|
yarn
|
|
yarn compile
|
|
cd ..
|
|
|
|
cd torn-token
|
|
yarn unlink
|
|
yarn link
|
|
yarn
|
|
yarn compile
|
|
cd ..
|
|
|
|
cd tornado-governance
|
|
yarn link torn-token
|
|
yarn
|
|
yarn compile
|
|
cd ..
|
|
|
|
cd tornado-anonymity-mining
|
|
yarn link torn-token
|
|
yarn
|
|
if [[ ! -f "build/circuits/TreeUpdateVerifier.sol" ]]; then
|
|
yarn circuit
|
|
fi
|
|
yarn compile
|
|
cd ..
|