From 60b5c6c2bd13e9ed0423da66682bfd95b5d0ee32 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 14 Oct 2024 09:02:37 +0000 Subject: [PATCH] make.sh: Avoid finding non-existant rootfiles Signed-off-by: Michael Tremer --- make.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make.sh b/make.sh index 7129c36e7..f68a61c1c 100755 --- a/make.sh +++ b/make.sh @@ -2155,6 +2155,8 @@ check_for_missing_rootfiles() { local file for file in ${LOG_DIR}/*_missing_rootfile; do + [ -e "${file}" ] || continue + file="${file##*/}" file="${file/_missing_rootfile/}"; -- 2.39.5