Skip to content
Snippets Groups Projects
Unverified Commit 191898ce authored by Mike McQuaid's avatar Mike McQuaid Committed by GitHub
Browse files

Merge pull request #6127 from issyl0/brew_cask_info_space_between_multiple_casks

Add a blank line between `brew cask info` output for multiple casks
parents 66dfd8ce 7a367980
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