From 5eba73993ccb667e986283e5e143adca48172e89 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Thu, 14 Dec 2023 10:38:26 +0100
Subject: [PATCH] fix shellcheck

---
 sbin/run_integration_test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sbin/run_integration_test.sh b/sbin/run_integration_test.sh
index c51fdf2cd..b35afc023 100755
--- a/sbin/run_integration_test.sh
+++ b/sbin/run_integration_test.sh
@@ -140,7 +140,7 @@ function cleanup {
     done
 
     # clean up empty files (most containers log to either stderr or stdout)
-    find log -size 0 | xargs rm
+    find log -size 0 -exec rm {} ';'
   fi
   if [ -z "${preserve}" ]; then
     make stop > /dev/null 2>&1
-- 
GitLab