From 917b4b964fc210446feeed87cb90577a804588c6 Mon Sep 17 00:00:00 2001 From: metacollin Date: Thu, 19 Nov 2020 20:33:18 -0700 Subject: [PATCH] Declare local variables seperately, split up line for readability. --- Library/Homebrew/cmd/formulae.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/cmd/formulae.sh b/Library/Homebrew/cmd/formulae.sh index 8bd57bf736..f543def388 100644 --- a/Library/Homebrew/cmd/formulae.sh +++ b/Library/Homebrew/cmd/formulae.sh @@ -3,9 +3,11 @@ #: List all locally installable formulae including short names. #: -# shellcheck disable=SC2155 homebrew-formulae() { - local formulae="$(\find "$HOMEBREW_REPOSITORY"/Library/Taps -type d \( -name Casks -o -name cmd -o -name .github \) -prune -false -o -name '*rb' | \sed -E -e 's/\.rb//g' -e 's_.*/Taps/(.*)/(home|linux)brew-_\1/_' -e 's|/Formula/|/|')" - local shortnames="$(echo "$formulae" | \cut -d / -f 3)" + local formulae + formulae="$(\find "$HOMEBREW_REPOSITORY"/Library/Taps -type d \( -name Casks -o -name cmd -o -name .github \) -prune -false -o -name '*rb' |\ + \sed -E -e 's/\.rb//g' -e 's_.*/Taps/(.*)/(home|linux)brew-_\1/_' -e 's|/Formula/|/|')" + local shortnames + shortnames="$(echo "$formulae" | \cut -d / -f 3)" echo -e "$formulae \n $shortnames" | \grep -v '^homebrew/' | \sort -uf }