7 lines
145 B
Bash
7 lines
145 B
Bash
![]() |
#!/bin/bash
|
||
|
set -eu
|
||
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
||
|
cd "$script_path"
|
||
|
|
||
|
./build_demo_web.sh && ls -l ../docs/*.wasm
|