From 503de87f72cd760e6b3c1f179bebd9a997206d9d Mon Sep 17 00:00:00 2001 From: Pirate Praveen Date: Sat, 10 Nov 2018 22:40:14 +0530 Subject: [PATCH] install INSTALLATION_TYPE file --- debian/gitlab.install | 1 + debian/upstream-file-count-check.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/gitlab.install b/debian/gitlab.install index 307e8a14a5..3b3b2878f7 100644 --- a/debian/gitlab.install +++ b/debian/gitlab.install @@ -29,6 +29,7 @@ GITLAB_PAGES_VERSION usr/share/gitlab GITALY_SERVER_VERSION usr/share/gitlab GITLAB_SHELL_VERSION usr/share/gitlab GITLAB_WORKHORSE_VERSION usr/share/gitlab +INSTALLATION_TYPE usr/share/gitlab lib usr/share/gitlab locale usr/share/gitlab MAINTENANCE.md usr/share/gitlab 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}'"