next round of review implementation

This commit is contained in:
Marc Went 2026-01-01 21:11:49 +01:00
parent 0def93e9d8
commit 61ef62b67d
No known key found for this signature in database
GPG Key ID: EA4208DC5ABEB135
2 changed files with 3 additions and 4 deletions

View File

@ -55,9 +55,9 @@ function update_script() {
$STD pnpm prune --prod $STD pnpm prune --prod
chmod +x /opt/wishlist/entrypoint.sh chmod +x /opt/wishlist/entrypoint.sh
mv /opt/wishlist-backup/.env /opt/wishlist/.env cp /opt/wishlist-backup/.env /opt/wishlist/.env
mv /opt/wishlist-backup/uploads /opt/wishlist/uploads cp -R /opt/wishlist-backup/uploads /opt/wishlist/uploads
mv /opt/wishlist-backup/data /opt/wishlist/data cp -R /opt/wishlist-backup/data /opt/wishlist/data
msg_ok "Updated ${APP}" msg_ok "Updated ${APP}"

View File

@ -18,7 +18,6 @@ $STD apt install -y \
build-essential \ build-essential \
python3 \ python3 \
openssl \ openssl \
git \
caddy caddy
msg_ok "Installed dependencies" msg_ok "Installed dependencies"