From f638fade466d3fbb9bf1331880c6bea756706e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lovro=20Biki=C4=87?= Date: Fri, 14 Jan 2022 01:00:00 +0100 Subject: [PATCH] Remove :bundle_options from bundle clean (#710) --- spec/support/outputs/bundle_clean.txt | 4 ++-- tasks/mina/bundler.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/support/outputs/bundle_clean.txt b/spec/support/outputs/bundle_clean.txt index e71d5210..03e75d36 100644 --- a/spec/support/outputs/bundle_clean.txt +++ b/spec/support/outputs/bundle_clean.txt @@ -1,2 +1,2 @@ -echo "-----> Cleans up unsed gems" -bundle clean --without development test --path "vendor/bundle" --deployment \ No newline at end of file +echo "-----> Cleaning up unused gems" +bundle clean \ No newline at end of file diff --git a/tasks/mina/bundler.rb b/tasks/mina/bundler.rb index 92eaeb29..8b062e8f 100644 --- a/tasks/mina/bundler.rb +++ b/tasks/mina/bundler.rb @@ -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