Files
rules_bun/tests/js_compat_test/run_binary.sh
2026-03-14 23:50:26 +01:00

11 lines
196 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
binary="$1"
output="$("${binary}")"
if [[ ${output} != "helper:payload-from-lib compat-mode" ]]; then
echo "unexpected output: ${output}" >&2
exit 1
fi