summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-01-25 22:24:02 -0800
committerAndre Arko <andre@arko.net>2015-01-25 23:30:19 -0800
commit4dc8cf6c778d7aed0c020f1564cf93827e3b0403 (patch)
treeb6a0e760c79ab3591756fc68cdbb3601cf1bed95
parentd1f3a23f16f01e822be3c3c0e7312524ac80f1f2 (diff)
downloadbundler-4dc8cf6c778d7aed0c020f1564cf93827e3b0403.tar.gz
reword clean system gems warning
-rw-r--r--lib/bundler/cli/clean.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/cli/clean.rb b/lib/bundler/cli/clean.rb
index a641a92393..99508820e2 100644
--- a/lib/bundler/cli/clean.rb
+++ b/lib/bundler/cli/clean.rb
@@ -16,7 +16,8 @@ module Bundler
def require_path_or_force
if !Bundler.settings[:path] && !options[:force]
Bundler.ui.error "Cleaning all the gems on your system is dangerous! " \
- "To remove every gem not in this bundle, run `bundle clean --force`."
+ "If you're sure you want to remove every system gem not in this " \
+ "bundle, run `bundle clean --force`."
exit 1
end
end