diff options
author | Thomas Bächler <thomas@archlinux.org> | 2009-10-31 19:06:33 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2009-10-31 19:06:33 +0100 |
commit | 1857fca2d204011852cf2309b66381b2fb4f6535 (patch) | |
tree | f35ee8ab099b81a5e1de2dedf421d3ad2ef8e715 /cron-jobs | |
parent | 78c6a7916836fd10fb232d617b6eca3ae5c48089 (diff) |
Fix a typo introduced in 38c7241ad2528b29a65a0b81b980e76d1046e94e
Diffstat (limited to 'cron-jobs')
-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 35325cf..727fe58 100755 --- a/cron-jobs/create-filelists +++ b/cron-jobs/create-filelists @@ -50,7 +50,7 @@ for repo in $repos; do mkdir -p "$tmppkgdir" if [ -f "${CACHEDIR}/${repodir}/${pkgname}/files" ]; then # echo "cache: $pkgname" - mv "${CACHEDIR}/${repodir}$/{pkgname}/files" "${tmppkgdir}/files" + mv "${CACHEDIR}/${repodir}/${pkgname}/files" "${tmppkgdir}/files" else # echo "$repo/$arch: $pkgname" echo '%FILES%' > "${tmppkgdir}/files" |