Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/univention-app.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/setup
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-02-14 01:48:50 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-02-14 01:48:50 +0300
commita63e434b38e276736104c6401f9847c6ef72bc0e (patch)
tree2f441410f98cdcb609e45a8fa308373894787686 /setup
parent047060e2a891be5f476537c43207ccdb6f57ceb9 (diff)
fix scraping for disabled apps during upgrade due to changed string
Diffstat (limited to 'setup')
-rw-r--r--setup2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup b/setup
index 3bac688..361e663 100644
--- a/setup
+++ b/setup
@@ -130,7 +130,7 @@ else
cd ..
fi
# attempt to re-enable disabled apps
- DISABLED_APPS=( $(cat "$UPGRADE_LOGFILE" | grep "Disabled 3rd-party app:" | cut -d ":" -f 2 | egrep -o "[a-z]+[a-z0-9_]*[a-z0-9]+") )
+ DISABLED_APPS=( $(cat "$UPGRADE_LOGFILE" | grep "Disabled incompatible app:" | cut -d ":" -f 2 | egrep -o "[a-z]+[a-z0-9_]*[a-z0-9]+") )
for APPID in "${DISABLED_APPS[@]}" ; do
$OCC app:enable "$APPID" || echo "Could not re-enable $APPID"
done