diff --git a/cron.sh b/cron.sh index 797fc6e..1c519f5 100755 --- a/cron.sh +++ b/cron.sh @@ -13,7 +13,7 @@ export HOME; user_account="daemon"; # Locate & move the .deb files into place -find "${source}" -type f -name "*.deb" -print0 | xargs -n1 -I{} --null mv "{}" "${destination}"; +find "${source}" -type f -name "*.deb" -print0 | xargs -I{} --null mv "{}" "${destination}"; # chown them to the right user account chown -R "${user_account}:${user_account}" "${destination}";