Skip to content
Snippets Groups Projects
Unverified Commit 7a367980 authored by Isabell (Issy) Long's avatar Isabell (Issy) Long
Browse files

Add a blank line between `brew cask info` output for multiple casks

- `brew info` adds a blank line between info output for multiple
  formulae. This replicates that display for `brew cask info`, as
  requested in Issue 6126.
parent 1226a820
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,8 @@ module Cask
if json == "v1"
puts JSON.generate(casks.map(&:to_h))
else
casks.each do |cask|
casks.each_with_index do |cask, i|
puts unless i.zero?
odebug "Getting info for Cask #{cask}"
self.class.info(cask)
end
......
......@@ -48,6 +48,7 @@ describe Cask::Cmd::Info, :cask do
None
==> Artifacts
Caffeine.app (App)
local-transmission: 2.61
https://brew.sh
Not installed
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment