Files
rules_bun/tests/binary_test/run_parent_env_binary.sh
2026-03-04 20:32:01 +01:00

11 lines
206 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
binary="$1"
output="$(${binary})"
if [[ ${output} != "from-parent-dotenv" ]]; then
echo "Expected .env value from parent directory, got: ${output}" >&2
exit 1
fi