summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-01-14 22:07:41 +0000
committerThe Bundler Bot <bot@bundler.io>2017-01-14 22:07:41 +0000
commit3f0075896a60ba1771913fc1118ecc9b91db98bb (patch)
tree216310f2121fc98ec98b0200b3075cff3f14bed9
parentfeb038f67b1e9d7751dc1e5a6327e6c627ece639 (diff)
parent85870856aa5cd5eea701bff0702a0d1db7a56138 (diff)
downloadbundler-3f0075896a60ba1771913fc1118ecc9b91db98bb.tar.gz
Auto merge of #5326 - alyssais:patch-1, r=segiddins
viz: fix capitalisation of Homebrew Homebrew capitalises its name — see http://brew.sh.
-rw-r--r--lib/bundler/cli/viz.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/viz.rb b/lib/bundler/cli/viz.rb
index 75e6affff9..418c462a93 100644
--- a/lib/bundler/cli/viz.rb
+++ b/lib/bundler/cli/viz.rb
@@ -21,7 +21,7 @@ module Bundler
rescue StandardError => e
raise unless e.message =~ /GraphViz not installed or dot not in PATH/
Bundler.ui.error e.message
- Bundler.ui.warn "Please install GraphViz. On a Mac with homebrew, you can run `brew install graphviz`."
+ Bundler.ui.warn "Please install GraphViz. On a Mac with Homebrew, you can run `brew install graphviz`."
end
end
end