From d531add8f53a2c2115190ca60295bac64d40bdee Mon Sep 17 00:00:00 2001 From: Jean Froment Date: Sun, 20 Jun 2021 16:05:23 +0200 Subject: [PATCH] Fix update script (typo) --- update-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-all.sh b/update-all.sh index 7186f0b..ecb5659 100755 --- a/update-all.sh +++ b/update-all.sh @@ -29,7 +29,7 @@ fi # Alert in case new services have been added (or removed) in sample but active file has not changed NB_SERVICES_ACTIVE=$(cat services.conf | wc -l) NB_SERVICES_ORIG=$(cat services.conf.sample | wc -l) -if [[ ${NB_SERVICES_ACTIVE} != ${NB_SERVICES_ORIG} ]]; +if [[ ${NB_SERVICES_ACTIVE} != ${NB_SERVICES_ORIG} ]]; then echo "[$0] Your services.conf file seems outdated. It appears there are new services available, or services that have been removed." diff -yt services.conf services.conf.sample fi