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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-01-07 21:01:14 +0300
committernachoparker <nacho@ownyourbits.com>2018-01-07 21:01:25 +0300
commit614c57d786e9f48753a5cae19816c85fb75cc940 (patch)
tree6365cd73cc21555e9778380e154a6a9321013f3e /bin
parent0972d575735a956550cf8fde89b43b22cb5798f1 (diff)
nc-restore: refresh trusted domainsv0.44.10
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nextcloudpi-config2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nextcloudpi-config b/bin/nextcloudpi-config
index f247e516..781f4ea2 100755
--- a/bin/nextcloudpi-config
+++ b/bin/nextcloudpi-config
@@ -42,7 +42,7 @@ function nextcloud-config()
local LIST=()
for item in $CONFDIR/*.sh; do
DESC=$( grep "DESCRIPTION=" "$item" | sed 's|^DESCRIPTION="||;s|"$||' )
- is_active_script "$item" && local ON="✓" || local ON=" "
+ is_active_script "$item" &>/dev/null && local ON="✓" || local ON=" "
LIST+=( "$ON $( basename "$item" .sh )" "$DESC" )
done