11 lines
198 B
Bash
Executable File
11 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
probe=$(./build-linuxcnc-wasm-standalone-probe.sh --mode interp-base-link)
|
|
|
|
"$probe"
|
|
|
|
echo "linuxcnc wasm interp_base link probe passed"
|