Commit 39d79c852b9dc9293e9151e425595531fdd0d311
1 parent
aaeb4195
Exists in
master
and in
1 other branch
Fix dependencies
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
Makefile
1 | -VERSION = 7.5 | |
1 | +VERSION = 7.5.1 | |
2 | 2 | TARBALL = gitlab-deps-$(VERSION).tar.gz |
3 | 3 | PREFIX = /usr |
4 | 4 | WGET = wget |
... | ... | @@ -7,6 +7,7 @@ BUNDLE_OPTS = --verbose --without='development test' |
7 | 7 | |
8 | 8 | all: |
9 | 9 | bundle install $(BUNDLE_OPTS) --local --deployment |
10 | + grep -rl '/this/will/be/overwritten/or/wrapped/anyways/do/not/worry/ruby' vendor/bundle/ruby/gems/*/bin | xargs --no-run-if-empty sed -i -e '1 s|.*|#!/usr/bin/env ruby|' | |
10 | 11 | |
11 | 12 | dist: $(TARBALL) |
12 | 13 | ... | ... |