feat: implement phase 5 bun_bundle bootstrap
This commit is contained in:
committed by
copilot-swe-agent[bot]
parent
2347185c4c
commit
f03598407b
14
tests/bundle_test/verify_bundle.sh
Executable file
14
tests/bundle_test/verify_bundle.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
bundle="$1"
|
||||
|
||||
if [[ ! -f "${bundle}" ]]; then
|
||||
echo "Bundle output not found: ${bundle}" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ! -s "${bundle}" ]]; then
|
||||
echo "Bundle output is empty: ${bundle}" >&2
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user