mirror of
https://github.com/tornadocash/tornado-deploy.git
synced 2025-01-16 08:00:58 +01:00
14 lines
152 B
Bash
Executable File
14 lines
152 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# expecting node v12
|
|
cd tornado-core
|
|
mkdir -p build
|
|
yarn install
|
|
yarn build:contract
|
|
cd ..
|
|
|
|
cd deployer
|
|
yarn install
|
|
yarn compile
|
|
cd ..
|