make.sh: Avoid finding non-existant rootfiles

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-10-14 09:02:37 +00:00
parent 522632655c
commit 60b5c6c2bd

View File

@@ -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/}";