diff options
author | Thomas Bächler <thomas@archlinux.org> | 2009-10-31 19:28:38 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2009-10-31 19:28:38 +0100 |
commit | c54f6c91dca7d84480f22aee60dda5861c73712e (patch) | |
tree | bf214a509a78c529ab4346123dfa17407689e3eb | |
parent | 782e8d67158115e8040215bcfef7e8ba54c6d04e (diff) |
create-filelists: fix another typo
-rwxr-xr-x | cron-jobs/create-filelists | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-jobs/create-filelists b/cron-jobs/create-filelists index 840535e..2a15e6a 100755 --- a/cron-jobs/create-filelists +++ b/cron-jobs/create-filelists @@ -44,7 +44,7 @@ for repo in $repos; do fi # create file lists - for pkg in $repodir*${PKGEXT}; do + for pkg in $repodir/*${PKGEXT}; do pkgname="$(getpkgname "$pkg")" tmppkgdir="${TMPDIR}/${repodir}/${pkgname}" mkdir -p "$tmppkgdir" |