diff options
Diffstat (limited to 'script/update/blobs/mrc')
-rwxr-xr-x | script/update/blobs/mrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/update/blobs/mrc b/script/update/blobs/mrc index e4de2be4..681b3699 100755 --- a/script/update/blobs/mrc +++ b/script/update/blobs/mrc @@ -62,11 +62,11 @@ check_existing() { [ -f "${_mrc_complete}" ] || \ return 0 - printf 'found existing mrc.bin\n' + printf "found existing mrc.bin\n" 1>&2 [ "$(sha512sum "${_mrc_complete}" | awk '{print $1}')" \ = "${_mrc_complete_hash}" ] && \ return 1 - printf 'hashes did not match, starting over\n' + printf "hashes did not match, starting over\n" 1>&2 } build_dependencies() |