diff options
author | Levente Polyak <anthraxx@archlinux.org> | 2022-05-19 23:49:02 +0200 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2022-06-22 01:05:03 +0200 |
commit | 37df0765d284892bf81bddf575fdcb14582b4f5f (patch) | |
tree | aa25d7cc11e95f4f11fc846a1c1a4bf22d337d72 /src/finddeps.in | |
parent | 6d946989f3ca7de78ccda98804bb72aec3692412 (diff) | |
download | devtools-37df0765d284892bf81bddf575fdcb14582b4f5f.tar.xz |
cleanup: move PKGBUILD.proto to contrib folder
Diffstat (limited to 'src/finddeps.in')
-rw-r--r-- | src/finddeps.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/finddeps.in b/src/finddeps.in index 05b3530..da7cb85 100644 --- a/src/finddeps.in +++ b/src/finddeps.in @@ -20,7 +20,7 @@ fi 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 + # shellcheck source=contrib/makepkg/PKGBUILD.proto . "$d/PKGBUILD" for dep in "${depends[@]}"; do # lose the version comparator, if any |