From 4ebddaa8809ce10aac734a50aa21f5380c2a2e02 Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Sat, 13 May 2023 08:58:09 +0200 Subject: [PATCH] casks: Add zap stanza comment [why] Casks without zap stanza are flagged; all casks should contain them. The font casks do not really need zap. [how] What is the right way to say 'we considered zap, but do not need it'? It seems that other people add a comment (the same comment). For example here: https://github.com/Homebrew/homebrew-cask/pull/119090 And that seems rather widespread. git/homebrew-cask/Casks$ git grep '# No zap stanza required' | wc -l 101 Include the same in our casks. [note] https://github.com/Homebrew/homebrew-cask/issues/88469 Signed-off-by: Fini Jastrow --- bin/scripts/generate-casks.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/scripts/generate-casks.sh b/bin/scripts/generate-casks.sh index e65f8fae98..128f0aa8c2 100755 --- a/bin/scripts/generate-casks.sh +++ b/bin/scripts/generate-casks.sh @@ -197,6 +197,7 @@ function write_footer { local outputfile=$1 { + printf "\\n # No zap stanza required\\n" printf "end\\n" } >> "$outputfile" }