feat: new bun_build and bun_compile, extend bun_install
This commit is contained in:
@@ -3,12 +3,12 @@ set -euo pipefail
|
||||
|
||||
bundle="$1"
|
||||
|
||||
if [[ ! -f "${bundle}" ]]; then
|
||||
if [[ ! -f ${bundle} ]]; then
|
||||
echo "Bundle output not found: ${bundle}" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ! -s "${bundle}" ]]; then
|
||||
if [[ ! -s ${bundle} ]]; then
|
||||
echo "Bundle output is empty: ${bundle}" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user