From 2fd95a080750ebc25d8b3a62a403e8e1b69b01ab Mon Sep 17 00:00:00 2001 From: Pirate Praveen Date: Thu, 11 Mar 2021 21:10:30 +0530 Subject: [PATCH] Add set -e and fix typos in file names --- debian/upstream-config-file-check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/upstream-config-file-check.sh b/debian/upstream-config-file-check.sh index 6d4e05626d..f51ac072f7 100644 --- a/debian/upstream-config-file-check.sh +++ b/debian/upstream-config-file-check.sh @@ -1,3 +1,4 @@ +set -e export LC_ALL=C.UTF-8 find config | sort > debian/upstream-config-file-list.new if ! diff -u debian/upstream-config-file-list debian/upstream-config-file-list.new @@ -5,7 +6,7 @@ then echo "---------------------\n" echo "Obsolete config files are:" echo "---------------------" - comm -13 debian/upstream-file-list.new debian/upstream-file-list + comm -13 debian/upstream-config-file-list.new debian/upstream-config-file-list echo "---------------------\n" echo "These should be added to debian/maintscript" echo "---------------------"