From 9b0da60c24701041e7dadfc9556f84d727c4b319 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sat, 9 Apr 2022 07:18:22 -0400 Subject: [PATCH] Fix detection of installed nc app The script erroneously determined the contacts app was installed because it matched "contactsintegration" --- setup/mods.available/remote-nextcloud-use-miab.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/mods.available/remote-nextcloud-use-miab.sh b/setup/mods.available/remote-nextcloud-use-miab.sh index fc93b344..0f12745e 100755 --- a/setup/mods.available/remote-nextcloud-use-miab.sh +++ b/setup/mods.available/remote-nextcloud-use-miab.sh @@ -377,7 +377,7 @@ install_app() { if [ ! -x /usr/bin/sudo ]; then say "WARNING: sudo is not installed: Unable to run occ to check and/or install Nextcloud app \"$app\"." - elif [ -z "$(sudo -E -u www-data php $NCDIR/occ app:list | grep $app)" ]; then + elif [ -z "$(sudo -E -u www-data php $NCDIR/occ app:list | grep -F "${app}:")" ]; then say_verbose "Install app '$app'" sudo -E -u www-data php $NCDIR/occ app:install $app [ $? -ne 0 ] && die "Unable to install Nextcloud app '$app'"