diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-05-15 04:11:10 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-05-15 04:11:10 +0100 | 
| commit | 0e1e9c1773734c38426529ba8cda2f5b9e5b8f9b (patch) | |
| tree | 9221c873e994886292aba82b615c2f8e7174a27c /resources/scripts/download | |
| parent | bea67353950d1e6972ff5bf362807ab4a767224a (diff) | |
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.
Diffstat (limited to 'resources/scripts/download')
| -rwxr-xr-x | resources/scripts/download/coreboot | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/resources/scripts/download/coreboot b/resources/scripts/download/coreboot index fa36fd75..f120270c 100755 --- a/resources/scripts/download/coreboot +++ b/resources/scripts/download/coreboot @@ -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 | 
