summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-03-31 12:43:39 -0500
committerSamuel Giddins <segiddins@segiddins.me>2017-04-03 20:57:19 -0500
commit7775e261be952d3eb5aeb067932e98472fdd4d77 (patch)
treeb9b80b5fe18aeda97d14d59195e1e12d5ba26ff0
parente6b9688d6eb087babf9a8a20d4d6c09c67745cb3 (diff)
downloadbundler-7775e261be952d3eb5aeb067932e98472fdd4d77.tar.gz
[Runtime] Suggest `bundle install` instead of just `bundle`
-rw-r--r--lib/bundler/runtime.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/runtime.rb b/lib/bundler/runtime.rb
index 45f445aec1..fdd3d227e3 100644
--- a/lib/bundler/runtime.rb
+++ b/lib/bundler/runtime.rb
@@ -24,7 +24,7 @@ module Bundler
# Activate the specs
load_paths = specs.map do |spec|
unless spec.loaded_from
- raise GemNotFound, "#{spec.full_name} is missing. Run `bundle` to get it."
+ raise GemNotFound, "#{spec.full_name} is missing. Run `bundle install` to get it."
end
if (activated_spec = Bundler.rubygems.loaded_specs(spec.name)) && activated_spec.version != spec.version