summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-05-26 09:22:39 +0100
committerLeah Rowe <leah@libreboot.org>2024-05-26 09:22:39 +0100
commitdc7b72f3f4403b9e851b8644691521b2d53caee3 (patch)
tree34b1ed39e8b86d397faa042b79a07f8dc6d35214 /script
parent5c14e8e1bca035e038365b65ab0a68acc98fd2d6 (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')
-rwxr-xr-xscript/roms4
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"
}