mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-01-31 02:52:14 +00:00
10 lines
175 B
Bash
10 lines
175 B
Bash
|
#!/usr/bin/env sh
|
||
|
BASE_DIR=$(pwd)
|
||
|
|
||
|
cd "$BASE_DIR/zcash-client-backend-wasm"
|
||
|
wasm-pack build
|
||
|
cd "$BASE_DIR/zcash-client-sdk-js"
|
||
|
npm install
|
||
|
cd "$BASE_DIR/demo-www"
|
||
|
npm install
|