diff options
author | Leah Rowe <leah@libreboot.org> | 2024-05-26 09:22:39 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-05-26 09:22:39 +0100 |
commit | dc7b72f3f4403b9e851b8644691521b2d53caee3 (patch) | |
tree | 34b1ed39e8b86d397faa042b79a07f8dc6d35214 /script/roms | |
parent | 5c14e8e1bca035e038365b65ab0a68acc98fd2d6 (diff) |
roms: rename bstr variable
i forgot to do this in the recent cleanup. it is now
initialised as a variable named "x"
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/roms')
-rwxr-xr-x | script/roms | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/roms b/script/roms index c4b95302..e3f3853c 100755 --- a/script/roms +++ b/script/roms @@ -60,9 +60,9 @@ main() [ "$xbmk_release" = "y" ] && x="archives (remember the inject command)" [ -z "$targets" ] && $err "No ROM images were compiled" - printf "\nROM images available in these %s:\n" "$bstr" + printf "\nROM images available in these %s:\n" "$x" eval "printf \"$targets\"" - printf "^^ ROM images available in these %s.\n\n" "$bstr" + printf "^^ ROM images available in these %s.\n\n" "$x" printf "DO NOT flash images from elf/ - please use bin/ instead.\n" } |