Commit 46a6dadfa0466d3adfeb92ce889afcedc0a4fb98
1 parent
5f7ef384
Exists in
master
and in
2 other branches
Fixing problem with unicorn
Signed-off-by: Alessandro Caetano <alessandro.caetanob@gmail.com> Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Makefile
... | ... | @@ -8,7 +8,7 @@ BUNDLE_OPTS = --verbose --without='development test cucumber' |
8 | 8 | all: |
9 | 9 | bundle install $(BUNDLE_OPTS) --local --deployment |
10 | 10 | grep -rl '/usr/local/bin/ruby' vendor/bundle/ruby/gems/*/ | xargs --no-run-if-empty sed -i -e '1,2 s|.*|#!/usr/bin/env ruby|' |
11 | - | |
11 | + 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|' | |
12 | 12 | dist: $(TARBALL) |
13 | 13 | |
14 | 14 | $(TARBALL): | ... | ... |