Skip to content

Commit

Permalink
Find/replace wherever the Gemfile is
Browse files Browse the repository at this point in the history
  • Loading branch information
Schwad committed Oct 18, 2024
1 parent 51bc4c8 commit 9ced948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/shipit/deploy_spec/bundler_discovery.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def remove_ruby_version_from_gemfile
# OSX is nitpicky about the -i.
%q(/usr/bin/sed -i '' '/^ruby\s/d' Gemfile)
else
%q(sed -i '/^ruby\s/d' Gemfile)
%q(find . -name Gemfile -type f -exec sed -i '/^ruby\s/d' {} +)
end
end

Expand Down

0 comments on commit 9ced948

Please sign in to comment.