feat: bootstrap bun toolchain skeleton and smoke test

This commit is contained in:
Eric
2026-03-04 02:54:12 +00:00
parent b66339a33b
commit ebce24804c
17 changed files with 261 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
bun_path="$1"
version="$(${bun_path} --version)"
if [[ ! "${version}" =~ ^[0-9]+\.[0-9]+\.[0-9]+ ]]; then
echo "Unexpected bun version output: ${version}" >&2
exit 1
fi