Merge pull request #9366 from maxim-belkin/formulae.sh-no-spaces

cmd/formulae.sh: fix spaces
This commit is contained in:
Mike McQuaid 2020-12-02 11:11:53 +00:00 committed by GitHub
commit 4980f33792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ homebrew-formulae() {
)"
local shortnames
shortnames="$(echo "$formulae" | cut -d "/" -f 3)"
echo -e "$formulae \n $shortnames" | \
echo -e "$formulae\n$shortnames" | \
grep -v '^homebrew/core' | \
sort -uf
}