ayaports/apk/v3.8/main/nextcloud/nextcloud.pre-upgrade
build@apk-groulx dcd94aac2a update
2021-06-04 15:24:49 +00: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