diff options
author | Leah Rowe <leah@libreboot.org> | 2023-05-15 00:43:55 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-05-15 00:43:55 +0100 |
commit | c32ae5979fbd2c32e9712be067a2a967365512e1 (patch) | |
tree | 8cc6dc3c77f2fb62163ef2e7bfd8f0f4c0f75279 /resources/scripts/download | |
parent | e47aaa8ff0f4ccd6fdb50055a50b4a9affd0a81e (diff) |
download/coreboot: rename function for clarity
Diffstat (limited to 'resources/scripts/download')
-rwxr-xr-x | resources/scripts/download/coreboot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/scripts/download/coreboot b/resources/scripts/download/coreboot index 5b2284d8..bcf9c3cd 100755 --- a/resources/scripts/download/coreboot +++ b/resources/scripts/download/coreboot @@ -61,14 +61,14 @@ fetch_coreboot_trees() fi for board in ${boards}; do rm -f resources/coreboot/*/seen - downloadfor "${board}" + download_for_board "${board}" [ -f build_error ] && break done rm -f resources/coreboot/*/seen } -downloadfor() { +download_for_board() { _board="${1}" cbtree="undefined" |