index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-05-05 18:41:09 -0400 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-07-14 06:58:26 +0200 |
commit | 196cdd7ae6626e8c66336b6121c9024b70acea9c (patch) | |
tree | 0cb8d448be851f21f8a197231f63e6d12240d3f8 /finddeps.in | |
parent | c440e6f1c531688668ae25924f85cc45980f8295 (diff) |
-rw-r--r-- | finddeps.in | 2 |
diff --git a/finddeps.in b/finddeps.in index c71f151..80774bb 100644 --- a/finddeps.in +++ b/finddeps.in @@ -17,7 +17,7 @@ if [[ -z $match ]]; then exit 1 fi -find . -type d | while read d; do +find . -type d | while read -r d; do if [[ -f "$d/PKGBUILD" ]]; then pkgname=() depends=() makedepends=() optdepends=() . "$d/PKGBUILD" |