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