From ce1cca8ebdc6433c30a0150e71352ec6b496a188 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 27 Apr 2025 17:08:48 -0400 Subject: [PATCH] Allow useless cat. --- .github/release-notes.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/release-notes.sh b/.github/release-notes.sh index 641426b36..e567e0225 100755 --- a/.github/release-notes.sh +++ b/.github/release-notes.sh @@ -1,5 +1,10 @@ #!/bin/sh +# SC2002 disables "useless cat" warnings. +# I prefer pipelines that start with an explicit input, and go from there. +# Overly fussy. +# shellcheck disable=SC2002 + scratch=$(mktemp -d -t tmp.XXXXXXXXXX) finish() { rm -rf "$scratch"