diff options
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 |