summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2017-06-18 23:49:00 +1000
committerColby Swandale <colby@taplaboratories.com>2017-06-18 23:49:00 +1000
commitba694ef8ebfed038f1753f19ddc3b17f67e8c793 (patch)
tree9a4541c84f58842cff1d1220d14ea34c1fc386ca
parent2e46e6705770e5a4685b1f3d3fbbe60f957599ae (diff)
downloadbundler-colby/fix-group-conflict-error.tar.gz
fix a missing space in the group conflict error messagecolby/fix-group-conflict-error
-rw-r--r--lib/bundler/cli/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/install.rb b/lib/bundler/cli/install.rb
index a6132751db..6df3162bef 100644
--- a/lib/bundler/cli/install.rb
+++ b/lib/bundler/cli/install.rb
@@ -145,7 +145,7 @@ module Bundler
conflicting_groups = options[:without] & options[:with]
unless conflicting_groups.empty?
Bundler.ui.error "You can't list a group in both, --with and --without." \
- "The offending groups are: #{conflicting_groups.join(", ")}."
+ " The offending groups are: #{conflicting_groups.join(", ")}."
exit 1
end
end