set shebang in gem bins to system ruby
This commit is contained in:
parent
e77d54d397
commit
7c0f1c9086
1 changed files with 3 additions and 0 deletions
|
@ -25,3 +25,6 @@ set -e
|
||||||
|
|
||||||
# Bundle install unless we're already up to date.
|
# Bundle install unless we're already up to date.
|
||||||
/usr/bin/bundle install --binstubs bin --path .bundle --quiet "$@"
|
/usr/bin/bundle install --binstubs bin --path .bundle --quiet "$@"
|
||||||
|
|
||||||
|
# Fix the binstubs to use system ruby
|
||||||
|
find bin -type f -print0 | xargs -0 sed -i '' 's|/usr/bin/env ruby|/usr/bin/ruby|g'
|
Loading…
Reference in a new issue