From 5aef8156b50e0fd2a13c4765a333181346096b09 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 9 Sep 2023 23:31:20 +0100 Subject: 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 --- script/update/blobs/inject | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script/update/blobs') 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 -- cgit v1.2.1