From: Michael Tremer Date: Mon, 14 Oct 2024 09:02:37 +0000 (+0000) Subject: make.sh: Avoid finding non-existant rootfiles X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60b5c6c2bd13e9ed0423da66682bfd95b5d0ee32;p=people%2Fms%2Fipfire-2.x.git make.sh: Avoid finding non-existant rootfiles Signed-off-by: Michael Tremer --- 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/}";