6 lines
154 B
Bash
Executable file
6 lines
154 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path"
|
|
|
|
./build_demo_web.sh && ls -lh ../docs/*.wasm
|