diff options
author | maxice8 <thinkabit.ukim@gmail.com> | 2019-01-30 01:04:48 +0000 |
---|---|---|
committer | maxice8 <30738253+maxice8@users.noreply.github.com> | 2019-01-30 01:14:59 +0000 |
commit | f6c595619cbd432211808f9eb414ad053ed3574e (patch) | |
tree | 0cc3a901d3d6e9b0a67553c0f981480e1234801b /common/hooks/pre-pkg | |
parent | 55691330140bd98aed3487a5c84f849d5385b3bb (diff) | |
download | void-packages-f6c595619cbd432211808f9eb414ad053ed3574e.tar void-packages-f6c595619cbd432211808f9eb414ad053ed3574e.tar.gz void-packages-f6c595619cbd432211808f9eb414ad053ed3574e.tar.bz2 void-packages-f6c595619cbd432211808f9eb414ad053ed3574e.tar.lz void-packages-f6c595619cbd432211808f9eb414ad053ed3574e.tar.xz void-packages-f6c595619cbd432211808f9eb414ad053ed3574e.tar.zst void-packages-f6c595619cbd432211808f9eb414ad053ed3574e.zip |
hooks/pre-pkg/99-pkglint-subpkgs.sh: fix case where grep doesn't match
Diffstat (limited to 'common/hooks/pre-pkg')
-rw-r--r-- | common/hooks/pre-pkg/99-pkglint-subpkgs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hooks/pre-pkg/99-pkglint-subpkgs.sh b/common/hooks/pre-pkg/99-pkglint-subpkgs.sh index 13edbf0f4d9..9c8b9cb85da 100644 --- a/common/hooks/pre-pkg/99-pkglint-subpkgs.sh +++ b/common/hooks/pre-pkg/99-pkglint-subpkgs.sh @@ -40,5 +40,5 @@ hook() { done grep -q "^$pkgname" <<< "$matches" && - msg_warn "$pkgname is sourcepkg but is in subpackages=.\n" + msg_warn "$pkgname is sourcepkg but is in subpackages=.\n" || : } |