From 54dce3344ca6a3064ffefb422c49f2f3ce0247ca Mon Sep 17 00:00:00 2001 From: Daniel Hansson Date: Sat, 29 Jan 2022 12:06:10 +0100 Subject: [PATCH] move above version check --- nextcloud_update.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nextcloud_update.sh b/nextcloud_update.sh index e45d652a..cffa3dbe 100644 --- a/nextcloud_update.sh +++ b/nextcloud_update.sh @@ -747,6 +747,10 @@ https://shop.hanssonit.se/product/upgrade-between-major-owncloud-nextcloud-versi exit 1 fi +# Fix remaining bug in NC 23.0.1 +git_apply_patch 30890 server 23.0.0 +git_apply_patch 30890 server 23.0.1 + # Check if new version is larger than current version installed. Skip version check if you want to upgrade to a prerelease. if [ -z "$PRERELEASE_VERSION" ] then @@ -779,10 +783,6 @@ then exit fi -# Fix remaining bug in NC 23.0.1 -git_apply_patch 30890 server 23.0.0 -git_apply_patch 30890 server 23.0.1 - # Check if PHP version is compatible with $NCVERSION PHP_VER=71 NC_VER=16