From bbec9048cb4d7480748a32706ea30796363dfac1 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 19 Feb 2020 22:30:10 +0100 Subject: [PATCH] Fix rm command --- bin/voicegardens-cron-hourly | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/voicegardens-cron-hourly b/bin/voicegardens-cron-hourly index 7d75afb..f58f6c3 100755 --- a/bin/voicegardens-cron-hourly +++ b/bin/voicegardens-cron-hourly @@ -1,4 +1,4 @@ #!/bin/sh -find /var/www/doesitsparkjoy.voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs rm -find /var/www/voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs rm +find /var/www/doesitsparkjoy.voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs -I {} rm -v {} +find /var/www/voicegardens.org/ -maxdepth 1 -type f -size 0 | xargs -I {} rm -v {}