summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Metcalfe <git@patrickmetcalfe.com>2015-04-28 17:51:53 -0500
committerPatrick Metcalfe <git@patrickmetcalfe.com>2015-04-28 17:51:53 -0500
commit325e743150d6885c86baa6054078004f14758921 (patch)
treec4f4c0beb94f0d6005e65abacacc86e352572813
parent6d38c3c1816faa3e4bff0f90889685b4db69f521 (diff)
downloadbundler-325e743150d6885c86baa6054078004f14758921.tar.gz
fix empty post install message bug
-rw-r--r--lib/bundler/installer/parallel_installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/installer/parallel_installer.rb b/lib/bundler/installer/parallel_installer.rb
index 2c687caec5..9c08c83b4c 100644
--- a/lib/bundler/installer/parallel_installer.rb
+++ b/lib/bundler/installer/parallel_installer.rb
@@ -26,7 +26,7 @@ class ParallelInstaller
end
def has_post_install_message?
- post_install_message.empty?
+ !post_install_message.empty?
end
def ignorable_dependency?(dep)