Skip to content

Commit

Permalink
Remove :bundle_options from bundle clean (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
lovro-bikic authored Jan 14, 2022
1 parent a387720 commit f638fad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/support/outputs/bundle_clean.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
echo "-----> Cleans up unsed gems"
bundle clean --without development test --path "vendor/bundle" --deployment
echo "-----> Cleaning up unused gems"
bundle clean
4 changes: 2 additions & 2 deletions tasks/mina/bundler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

desc 'Cleans up unused gems in your bundler directory'
task :clean do
comment %(Cleans up unsed gems)
command %(#{fetch(:bundle_bin)} clean #{fetch(:bundle_options)})
comment %(Cleaning up unused gems)
command %(#{fetch(:bundle_bin)} clean)
end
end

0 comments on commit f638fad

Please sign in to comment.