mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-17 18:34:57 +02:00
download: check for non-existent script in loop
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -48,6 +48,9 @@ main()
|
|||||||
exit 0
|
exit 0
|
||||||
elif [ "${program}" = "all" ]; then
|
elif [ "${program}" = "all" ]; then
|
||||||
for downloadProgram in ${download}/*; do
|
for downloadProgram in ${download}/*; do
|
||||||
|
if [ ! -f "${downloadProgram}" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
"${downloadProgram}"
|
"${downloadProgram}"
|
||||||
done
|
done
|
||||||
exit 0
|
exit 0
|
||||||
|
|||||||
Reference in New Issue
Block a user