diff options
author | Leah Rowe <vimuser@noreply.codeberg.org> | 2023-09-03 14:12:47 +0000 |
---|---|---|
committer | Leah Rowe <vimuser@noreply.codeberg.org> | 2023-09-03 14:12:47 +0000 |
commit | 71d361aac7ce790268a5f3454140f23889a56e7d (patch) | |
tree | 56a4c321f5ef1eefadc6bfac4275e47f8468ac40 /script/build/boot | |
parent | eebf713311ca333f85d75fafb92fdbd729b4a0ba (diff) | |
parent | ef3fb05d66f1b5c94dd65ae2d14b691227d6afbe (diff) |
Merge pull request 'Less cat abuse' (#123) from Riku_V/lbmk:cat into master
Reviewed-on: https://codeberg.org/libreboot/lbmk/pulls/123
Diffstat (limited to 'script/build/boot')
-rwxr-xr-x | script/build/boot/roms | 2 | ||||
-rwxr-xr-x | script/build/boot/roms_helper | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/script/build/boot/roms b/script/build/boot/roms index a19d9445..50b1f460 100755 --- a/script/build/boot/roms +++ b/script/build/boot/roms @@ -31,7 +31,7 @@ set -u -e . "include/err.sh" -projectname="$(cat projectname)" +read projectname < projectname opts="" boards= firstoption="" diff --git a/script/build/boot/roms_helper b/script/build/boot/roms_helper index 93574d9e..b663dc8e 100755 --- a/script/build/boot/roms_helper +++ b/script/build/boot/roms_helper @@ -28,7 +28,7 @@ set -u -e . "include/err.sh" -projectname="$(cat projectname)" +read projectname < projectname cfgsdir="resources/coreboot" |