From 6ef141ac374afe3bf6f3eae29a59b854064979e6 Mon Sep 17 00:00:00 2001 From: Pirate Praveen Date: Tue, 20 Nov 2018 21:36:00 +0530 Subject: [PATCH] Fix upstream count check --- debian/upstream-file-count-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/upstream-file-count-check.sh b/debian/upstream-file-count-check.sh index 429129c3c9..b07d34ed86 100644 --- a/debian/upstream-file-count-check.sh +++ b/debian/upstream-file-count-check.sh @@ -2,7 +2,7 @@ ucount=$(ls -1a |grep -vx .git | wc -l) dcount=$(cat debian/gitlab.install |cut -d' ' -f1|grep -v debian |wc -l) -ignored=33 +ignored=32 if ! [ $(echo "$ucount" - "$dcount"|bc) -eq $ignored ]; then echo "Found new files added by upstream and not added to debian/install" echo "Add them to debian/gitlab.install or adjust 'ignored=${ignored}'"