Adjust install file for upstream changes
This commit is contained in:
parent
086651cd74
commit
f7f4b58364
3 changed files with 74 additions and 2 deletions
1
debian/gitlab.install
vendored
1
debian/gitlab.install
vendored
|
@ -11,7 +11,6 @@ debian/conf/nginx.conf.example usr/lib/gitlab/templates
|
|||
debian/conf/nginx.ssl.conf.example usr/lib/gitlab/templates
|
||||
debian/rake-tasks.sh usr/lib/gitlab/scripts
|
||||
debian/gitlab-rake.sh usr/lib/gitlab/scripts
|
||||
.babelrc usr/share/gitlab
|
||||
app usr/share/gitlab
|
||||
bin usr/share/gitlab
|
||||
CHANGELOG.md usr/share/gitlab
|
||||
|
|
4
debian/upstream-file-count-check.sh
vendored
4
debian/upstream-file-count-check.sh
vendored
|
@ -2,10 +2,12 @@
|
|||
|
||||
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}'"
|
||||
echo "in debian/upstream-file-count-check.sh as required"
|
||||
ls -1a |grep -vx .git > debian/upstream-file-list.new
|
||||
diff -y debian/upstream-file-list debian/upstream-file-list.new
|
||||
exit 1
|
||||
fi
|
||||
|
|
71
debian/upstream-file-list
vendored
Normal file
71
debian/upstream-file-list
vendored
Normal file
|
@ -0,0 +1,71 @@
|
|||
.
|
||||
..
|
||||
app
|
||||
.babelrc.js
|
||||
bin
|
||||
builds
|
||||
CHANGELOG.md
|
||||
changelogs
|
||||
.codeclimate.yml
|
||||
config
|
||||
config.ru
|
||||
CONTRIBUTING.md
|
||||
.csscomb.json
|
||||
danger
|
||||
Dangerfile
|
||||
db
|
||||
debian
|
||||
doc
|
||||
docker
|
||||
docker-compose.yml
|
||||
.eslintignore
|
||||
.eslintrc.yml
|
||||
fixtures
|
||||
.foreman
|
||||
Gemfile
|
||||
Gemfile.lock
|
||||
Gemfile.rails5
|
||||
Gemfile.rails5.lock
|
||||
generator_templates
|
||||
GITALY_SERVER_VERSION
|
||||
.gitattributes
|
||||
.github
|
||||
.gitignore
|
||||
.gitlab
|
||||
.gitlab-ci.yml
|
||||
GITLAB_PAGES_VERSION
|
||||
GITLAB_SHELL_VERSION
|
||||
GITLAB_WORKHORSE_VERSION
|
||||
.haml-lint.yml
|
||||
INSTALLATION_TYPE
|
||||
lib
|
||||
LICENSE
|
||||
locale
|
||||
log
|
||||
.mailmap
|
||||
MAINTENANCE.md
|
||||
.nvmrc
|
||||
package.json
|
||||
.pkgr.yml
|
||||
plugins
|
||||
.prettierignore
|
||||
.prettierrc
|
||||
PROCESS.md
|
||||
Procfile
|
||||
public
|
||||
qa
|
||||
Rakefile
|
||||
README.md
|
||||
rubocop
|
||||
.rubocop_todo.yml
|
||||
.rubocop.yml
|
||||
.ruby-version
|
||||
scripts
|
||||
.scss-lint.yml
|
||||
shared
|
||||
spec
|
||||
symbol
|
||||
tmp
|
||||
vendor
|
||||
VERSION
|
||||
yarn.lock
|
Loading…
Add table
Reference in a new issue