summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason King <jk@handle.it>2016-12-07 16:29:29 -0700
committerJason King <jk@handle.it>2016-12-08 12:43:37 -0700
commit67d278530f5af699d47221a2dc702be959a419c6 (patch)
treeeacf6913c9c59f7f0c04ad09e51c264e289d1d0c
parent9c35eaedb633be92e41ec566beb323bf6a3b0482 (diff)
downloadbundler-67d278530f5af699d47221a2dc702be959a419c6.tar.gz
Output post_install_message during update
-rw-r--r--lib/bundler/cli/update.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/cli/update.rb b/lib/bundler/cli/update.rb
index 6fb7c86a4c..8a7541c259 100644
--- a/lib/bundler/cli/update.rb
+++ b/lib/bundler/cli/update.rb
@@ -52,7 +52,7 @@ module Bundler
Bundler.settings[:jobs] = opts["jobs"] if opts["jobs"]
Bundler.definition.validate_runtime!
- Installer.install Bundler.root, Bundler.definition, opts
+ installer = Installer.install Bundler.root, Bundler.definition, opts
Bundler.load.cache if Bundler.app_cache.exist?
if Bundler.settings[:clean] && Bundler.settings[:path]
@@ -62,6 +62,7 @@ module Bundler
Bundler.ui.confirm "Bundle updated!"
Bundler::CLI::Common.output_without_groups_message
+ Bundler::CLI::Common.output_post_install_messages installer.post_install_messages
end
end
end