diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2010-04-28 11:55:04 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2010-04-28 11:55:04 -0700 |
commit | 709b4a514e24620145756a312ef9aab0662a3d8f (patch) | |
tree | 9b264bc0ca5885fc0c8930bf8158a452f1d9b681 /cron-jobs/ftpdir-cleanup | |
parent | e284d06d6cf63665cbadcb65e3a09bbd18027bd1 (diff) |
ftpdir-cleanup: Fix cleanup of package pool
Diffstat (limited to 'cron-jobs/ftpdir-cleanup')
-rwxr-xr-x | cron-jobs/ftpdir-cleanup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-jobs/ftpdir-cleanup b/cron-jobs/ftpdir-cleanup index 1ccc654..2496ced 100755 --- a/cron-jobs/ftpdir-cleanup +++ b/cron-jobs/ftpdir-cleanup @@ -64,7 +64,7 @@ if [ -n "$to_cleanup" ]; then echo " $(basename "$f")" done echo "" - mv "$f" "$CLEANUP_DESTDIR" + mv $to_cleanup "$CLEANUP_DESTDIR" fi cleanup |