aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 a641a923..99508820 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