Skip to content
Snippets Groups Projects
Commit 0e1e9c17 authored by Leah Rowe's avatar Leah Rowe
Browse files

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.
parent bea67353
Branches
No related merge requests found
......@@ -60,7 +60,7 @@ fetch_coreboot_trees()
else
for board in resources/coreboot/*; do
[ ! -d "${board}" ] && continue
boards="${boards} ${board}"
boards="${boards} ${board##*/}"
done
fi
for board in ${boards}; do
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment