brew deps: Fix typo in --include-optional output.
This was missing its closing square bracket.
This commit is contained in:
parent
23da62471b
commit
fc40e2fa40
@ -130,7 +130,7 @@ module Homebrew
|
|||||||
if ARGV.include?("--annotate")
|
if ARGV.include?("--annotate")
|
||||||
str = "#{str} [build]" if dep.build?
|
str = "#{str} [build]" if dep.build?
|
||||||
str = "#{str} [test]" if dep.test?
|
str = "#{str} [test]" if dep.test?
|
||||||
str = "#{str} [optional" if dep.optional?
|
str = "#{str} [optional]" if dep.optional?
|
||||||
str = "#{str} [recommended]" if dep.recommended?
|
str = "#{str} [recommended]" if dep.recommended?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user