mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-21 10:12:04 +02:00
download/coreboot: fix downloads without argument
this should download all trees: ./download coreboot without this patch, it doesn't with this patch, it works i overlooked this during earlier refactoring. auditing revealed it.
This commit is contained in:
@@ -60,7 +60,7 @@ fetch_coreboot_trees()
|
|||||||
else
|
else
|
||||||
for board in resources/coreboot/*; do
|
for board in resources/coreboot/*; do
|
||||||
[ ! -d "${board}" ] && continue
|
[ ! -d "${board}" ] && continue
|
||||||
boards="${boards} ${board}"
|
boards="${boards} ${board##*/}"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
for board in ${boards}; do
|
for board in ${boards}; do
|
||||||
|
|||||||
Reference in New Issue
Block a user