Skip to content
upgrade.sh 470 B
Newer Older
#!/bin/sh
set -eu
echo "Upgrading nextcloud to $VERSION ..."
sh -c 'php /var/www/html/occ app:list' | sed -n "/Enabled:/,/Disabled:/p" > /tmp/list_before
sh -c 'php /var/www/html/occ upgrade'
sh -c 'php /var/www/html/occ app:list' | sed -n "/Enabled:/,/Disabled:/p" > /tmp/list_after
echo "The following apps have been disabled:"
diff /tmp/list_before /tmp/list_after | grep '<' | cut -d- -f2 | cut -d: -f1
rm -f /tmp/list_before /tmp/list_after
echo "Upgrade finished"