Fix Homepage-Script: Installation/Update (#1129)

* Fix some Parts of Homepage-Script

* Fix Install
This commit is contained in:
CanbiZ 2024-12-31 08:59:53 +01:00 committed by GitHub
parent 69ae09346f
commit c9f4391df0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 8 deletions

View File

@ -50,16 +50,16 @@ function update_script() {
cp -r homepage-${RELEASE}/* /opt/homepage/
rm -rf homepage-${RELEASE}
cd /opt/homepage
npx update-browserslist-db@latest
pnpm install
export NEXT_PUBLIC_VERSION=v$RELEASE
export NEXT_PUBLIC_REVISION='source'
pnpm build
npx update-browserslist-db@latest >/dev/null 2>&1
pnpm install >/dev/null 2>&1
NEXT_PUBLIC_VERSION=v$RELEASE
NEXT_PUBLIC_REVISION='source'
pnpm build >/dev/null 2>&1
systemctl start homepage
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated Homepage to v${RELEASE}"
else
msg_ok "No update required. ${APP} is already at ${RELEASE}"
msg_ok "No update required. ${APP} is already at v${RELEASE}"
fi
exit
}

View File

@ -43,8 +43,9 @@ rm -rf homepage-${RELEASE}
cd /opt/homepage
cp /opt/homepage/src/skeleton/* /opt/homepage/config
$STD pnpm install
$STD export NEXT_PUBLIC_VERSION=v$RELEASE
$STD export NEXT_PUBLIC_REVISION='source' $STD pnpm build
$STD NEXT_PUBLIC_VERSION=v$RELEASE
$STD NEXT_PUBLIC_REVISION='source'
$STD pnpm build
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
msg_ok "Installed Homepage v${RELEASE}"