From d2bd29908229f03b3d2f4d5371017225c9e3cae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Fri, 12 Jul 2024 20:33:15 +0100 Subject: [PATCH] Ignore missing temporary files during cleanup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bence Szépkúti --- tests/scripts/all-helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/all-helpers.sh b/tests/scripts/all-helpers.sh index d7af599515..4fc8cfa49c 100644 --- a/tests/scripts/all-helpers.sh +++ b/tests/scripts/all-helpers.sh @@ -285,7 +285,7 @@ can_run_cc_output() { result=0 fi fi - rm "$testbin" + rm -f "$testbin" fi return $result }