Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the bundler with clean, it seems to work fine without on later releases of bundler #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ def bootstrap name = nil
Dir.chdir(dir) do
subtitle "Bootstrapping #{dir}"
if has_rake_task?('bootstrap')
Bundler.with_clean_env do
sh "rake --no-search bootstrap"
end
sh "rake --no-search bootstrap"
end
end
end
Expand Down Expand Up @@ -139,9 +137,7 @@ begin
if name = args.name
bootstrap(name)
else
Bundler.with_clean_env do
puts `bundle install`
end
puts `bundle install`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be sh "bundle install"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hah - yeah

end
end

Expand Down