From b7c8171931f0e6e86aee3b6ddc7f101e59f156ce Mon Sep 17 00:00:00 2001 From: Pirate Praveen Date: Fri, 15 Sep 2017 13:47:33 +0530 Subject: [PATCH] install .babelrc --- debian/install | 1 + debian/upstream-file-count-check.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/install b/debian/install index 02a563d3c4..8b723722cf 100644 --- a/debian/install +++ b/debian/install @@ -13,6 +13,7 @@ debian/conf/nginx.ssl.conf.example usr/lib/gitlab/templates debian/adduser.sh usr/lib/gitlab/scripts debian/rake-tasks.sh usr/lib/gitlab/scripts debian/gitlab-check.sh usr/lib/gitlab/scripts +.babelrc usr/share/gitlab app usr/share/gitlab bin usr/share/gitlab CHANGELOG.md usr/share/gitlab diff --git a/debian/upstream-file-count-check.sh b/debian/upstream-file-count-check.sh index db2fad98f2..003f9bfc27 100644 --- a/debian/upstream-file-count-check.sh +++ b/debian/upstream-file-count-check.sh @@ -1,6 +1,6 @@ -ucount=$(ls -1 | wc -l) +ucount=$(ls -1a | wc -l) dcount=$(cat debian/install |cut -d' ' -f1|grep -v debian |wc -l) -ignored=7 +ignored=29 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/install or adjust 'ignored=${ignored}'"