summaryrefslogtreecommitdiff
path: root/script/update/blobs
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-09 23:31:20 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-09 23:31:20 +0100
commit5aef8156b50e0fd2a13c4765a333181346096b09 (patch)
tree613ebc06da416b969ebeed25b41c5729707e37e4 /script/update/blobs
parent76e12cd4a9ab0fb141a4077f973166f796d4a5b8 (diff)
scripts: use printf, not echo, where appropriate
printf has more universal behaviour, across various implementations of sh, so it's better to use this. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update/blobs')
-rwxr-xr-xscript/update/blobs/inject2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/update/blobs/inject b/script/update/blobs/inject
index 06bf48f0..b849f5c5 100755
--- a/script/update/blobs/inject
+++ b/script/update/blobs/inject
@@ -125,7 +125,7 @@ patch_release_roms()
err "patch_release_roms: could not extract release archive"
for x in "${_tmpdir}"/bin/*/*.rom ; do
- echo "patching rom $x"
+ printf "patching rom: %s\n" "$x"
patch_rom "${x}" || err "patch_release_roms: could not patch ${x}"
done
for x in "${_tmpdir}"/bin/*/*_nomicrocode.rom ; do