feat: bun_script

This commit is contained in:
Eric
2026-03-06 19:51:52 +01:00
parent 7569ca914c
commit e84bd920be
16 changed files with 214 additions and 9 deletions

View File

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