index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-05-06 14:10:21 -0400 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2019-08-09 19:41:53 +0200 |
commit | 70f3b8ddb84d8bbfb44d250188667bb7ba0b1db3 (patch) | |
tree | d145bb886e106ad60874f719bceb1d013231036a | |
parent | 5fcd90a212d332fa2900ba4b1a1c12e2ab55ea44 (diff) |
-rw-r--r-- | finddeps.in | 2 |
diff --git a/finddeps.in b/finddeps.in index 2a085e5..7237d67 100644 --- a/finddeps.in +++ b/finddeps.in @@ -17,7 +17,7 @@ if [[ -z $match ]]; then exit 1 fi -find . -type d | while read -r d; do +find . -type d -print0 2>/dev/null| while read -r -d '' d; do if [[ -f "$d/PKGBUILD" ]]; then pkgname=() depends=() makedepends=() optdepends=() # shellcheck source=PKGBUILD.proto |