Check Point
Rolling release / release (push) Successful in 6m36s

This commit is contained in:
2026-09-12 09:07:09 -04:00
parent e9040d110a
commit a4073b9020
63 changed files with 2459 additions and 632 deletions
+3 -2
View File
@@ -63,7 +63,8 @@ if [[ -n "${BUNDLE_NAME}" ]]; then
test -n "${SOURCE_DIR}" || { echo "Bare bundle contained no application directory" >&2; exit 1; }
test -x "${SOURCE_DIR}/packaging/install.sh" || { echo "Bare bundle contained no installer" >&2; exit 1; }
echo "Installing the bundled Bare runtime; Node.js is not required"
exec bash "${SOURCE_DIR}/packaging/install.sh" "$@"
bash "${SOURCE_DIR}/packaging/install.sh" "$@"
exit $?
fi
fi
if ! command -v npm >/dev/null || ! command -v node >/dev/null; then
@@ -82,4 +83,4 @@ test -n "$SOURCE_DIR" || { echo "Downloaded archive contained no source director
test -x "$SOURCE_DIR/packaging/install.sh" || { echo "Downloaded ref has no installer" >&2; exit 1; }
echo "Installing into the current user account"
exec bash "$SOURCE_DIR/packaging/install.sh" "$@"
bash "$SOURCE_DIR/packaging/install.sh" "$@"