From b4b02b4f07043d45949bc1f7a6e1225f3a7372ac Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 26 Jun 2023 22:04:59 +0100 Subject: [PATCH] cron: fix xargs warning --- cron.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}";