mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-01-30 18:42:15 +00:00
10 lines
175 B
Bash
Executable File
10 lines
175 B
Bash
Executable File
#!/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
|