Commit ed10797dc7e7ed0cdab8b4c425490a127d5f81c6
1 parent
39d79c85
Exists in
master
and in
1 other branch
Also install Gemfile
Showing
1 changed file
with
5 additions
and
3 deletions
Show diff stats
Makefile
... | ... | @@ -15,9 +15,11 @@ $(TARBALL): |
15 | 15 | (git archive --prefix=gitlab-deps-$(VERSION)/ HEAD | gzip > $@) || ($(RM) $@; false) |
16 | 16 | |
17 | 17 | install: all |
18 | - mkdir -p $(DESTDIR)$(PREFIX)/lib/gitlab/vendor | |
19 | - cp -r .bundle $(DESTDIR)$(PREFIX)/lib/gitlab/.bundle | |
20 | - cp -r vendor/bundle $(DESTDIR)$(PREFIX)/lib/gitlab/vendor/bundle | |
18 | + mkdir -p $(DESTDIR)$(PREFIX)/lib/gitlab/vendor | |
19 | + install -m 0644 Gemfile $(DESTDIR)$(PREFIX)/lib/gitlab/vendor | |
20 | + install -m 0644 Gemfile.lock $(DESTDIR)$(PREFIX)/lib/gitlab/vendor | |
21 | + cp -r .bundle $(DESTDIR)$(PREFIX)/lib/gitlab/.bundle | |
22 | + cp -r vendor/bundle $(DESTDIR)$(PREFIX)/lib/gitlab/vendor/bundle | |
21 | 23 | |
22 | 24 | update: clean |
23 | 25 | $(WGET) -O Gemfile https://gitlab.com/gitlab-org/gitlab-ce/raw/$(GITLAB_BRANCH)/Gemfile | ... | ... |