Commit 91ce8bb6f940de85f22c62e2ea155993b589ae36

Authored by Antonio Terceiro
1 parent 39eb167e
Exists in master and in 1 other branch gitlab-8.x

get Gemfile* from upstream

Showing 1 changed file with 5 additions and 3 deletions   Show diff stats
Makefile
1 1 WGET = wget
  2 +GITLAB_BRANCH = 7-5-stable
2 3  
3 4 all:
4 5 bundle install --path vendor/bundle
5 6  
6 7 update:
7   - $(WGET) -O Gemfile https://beta.softwarepublico.gov.br/gitlab/softwarepublico/gitlabhq/raw/master/Gemfile
8   - git add Gemfile
9   - git commit Gemfile -m 'update Gemfile'
  8 + $(WGET) -O Gemfile https://gitlab.com/gitlab-org/gitlab-ce/raw/$(GITLAB_BRANCH)/Gemfile
  9 + $(WGET) -O Gemfile.lock https://gitlab.com/gitlab-org/gitlab-ce/raw/$(GITLAB_BRANCH)/Gemfile.lock
  10 + git add Gemfile*
  11 + git commit Gemfile* -m 'update Gemfile*'
... ...