1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-22 21:09:40 +08:00
2024-12-28 18:24:06 +08:00

39 lines
969 B
Bash

#!/bin/bash
source /.env
if [[ "$PACKAGE_MANAGER" == "npm" ]]; then
npm config set registry $CONTAINER_PACKAGE_URL
elif [[ "$PACKAGE_MANAGER" == "yarn" ]]; then
yarn config set registry $CONTAINER_PACKAGE_URL
elif [[ "$PACKAGE_MANAGER" == "pnpm" ]]; then
pnpm config set registry $CONTAINER_PACKAGE_URL
fi
if [[ "$RUN_INSTALL" -eq "1" ]]; then
if [[ "$PACKAGE_MANAGER" == "npm" ]]; then
npm install
elif [[ "$PACKAGE_MANAGER" == "yarn" ]]; then
yarn install
elif [[ "$PACKAGE_MANAGER" == "pnpm" ]]; then
pnpm install
else
echo "未知的 PACKAGE_MANAGER: $PACKAGE_MANAGER"
exit 1
fi
fi
if [[ "$CUSTOM_SCRIPT" -eq "1" ]]; then
eval $EXEC_SCRIPT
else
if [[ "$PACKAGE_MANAGER" == "npm" ]]; then
npm run $EXEC_SCRIPT
elif [[ "$PACKAGE_MANAGER" == "yarn" ]]; then
yarn run $EXEC_SCRIPT
elif [[ "$PACKAGE_MANAGER" == "pnpm" ]]; then
pnpm run $EXEC_SCRIPT
fi
fi