diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-09 23:31:20 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-09 23:31:20 +0100 |
commit | 5aef8156b50e0fd2a13c4765a333181346096b09 (patch) | |
tree | 613ebc06da416b969ebeed25b41c5729707e37e4 /script/update/blobs/inject | |
parent | 76e12cd4a9ab0fb141a4077f973166f796d4a5b8 (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/inject')
-rwxr-xr-x | script/update/blobs/inject | 2 |
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 |