tornado-deploy/build.sh

14 lines
152 B
Bash
Raw Normal View History

2020-12-15 16:10:11 +01:00
#!/bin/bash -e
# expecting node v12
2020-12-18 00:53:43 +01:00
cd tornado-core
mkdir -p build
yarn install
yarn build:contract
2020-12-15 16:10:11 +01:00
cd ..
2020-12-18 00:53:43 +01:00
cd deployer
yarn install
2020-12-15 16:10:11 +01:00
yarn compile
cd ..