iports/ilot/nextcloud31/nextcloud31.pre-upgrade
Antoine Martin 65854af684
Some checks failed
/ lint (pull_request) Failing after 33s
/ deploy-x86_64 (pull_request) Has been skipped
/ build-x86_64 (pull_request) Failing after 45s
/ deploy-aarch64 (pull_request) Has been skipped
/ build-aarch64 (pull_request) Failing after 1m9s
ilot/nextcloud31: new aport
2025-03-12 19:07:21 -04:00

10 lines
297 B
Bash

#!/bin/sh
ver_old="$2"
apps_link='/usr/share/webapps/nextcloud/apps'
# Remove apps symlink before replacing files to avoid losing installed apps.
# This is a workaround for some issue in apk.
if [ $(apk version -t "$ver_old" '12.0.0-r2') = '<' ] && [ -L "$apps_link" ]; then
rm "$apps_link"
fi