diff --git a/debian/gitlab.install b/debian/gitlab.install index 9ef80d91c8..307e8a14a5 100644 --- a/debian/gitlab.install +++ b/debian/gitlab.install @@ -22,8 +22,6 @@ CONTRIBUTING.md usr/share/gitlab doc usr/share/gitlab docker usr/share/gitlab docker-compose.yml usr/share/gitlab -doc_styleguide.md usr/share/gitlab -features usr/share/gitlab fixtures usr/share/gitlab Gemfile usr/share/gitlab generator_templates usr/share/gitlab diff --git a/debian/upstream-file-count-check.sh b/debian/upstream-file-count-check.sh index 68f118a7d8..429129c3c9 100644 --- a/debian/upstream-file-count-check.sh +++ b/debian/upstream-file-count-check.sh @@ -1,6 +1,8 @@ +# set -x # use this for debugging + ucount=$(ls -1a |grep -vx .git | wc -l) dcount=$(cat debian/gitlab.install |cut -d' ' -f1|grep -v debian |wc -l) -ignored=32 +ignored=33 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}'"