4 lines
241 B
Bash
Executable File
4 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
PROFILE=${1:-release}
|
|
cargo build --lib --target wasm32-unknown-unknown --$PROFILE && /home/runassudo/.cargo/bin/wasm-bindgen --target no-modules target/wasm32-unknown-unknown/$PROFILE/opentally.wasm --out-dir html --no-typescript
|