1
0
Fork 0

Merge pull request #555 from idris/patch-1

Don't let .DS_Store files break script/bootstrap
This commit is contained in:
Rafael Mendonça França 2014-03-30 18:32:04 -05:00
commit 0bada7bc1d
1 changed files with 1 additions and 1 deletions

View File

@ -27,4 +27,4 @@ set -e
/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'
find bin -not -path 'bin/\.*' -type f -print0 | xargs -0 sed -i '' 's|/usr/bin/env ruby|/usr/bin/ruby|g'