5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-01-08 01:17:37 +03:00

tools: download_file_from_url: fix typo

This commit is contained in:
Lorenz Stechauner 2021-06-15 16:08:34 +02:00 committed by Thomas Lamprecht
parent b818066a85
commit eca898c0c1

View File

@ -1908,7 +1908,7 @@ sub download_file_from_url {
if (lc($checksum_got) eq lc($checksum_expected)) {
print "OK, checksum verified\n";
} else {
die "ERRROR, checksum mismatch: got '$checksum_got' != expect '$checksum_expected'\n";
die "ERROR, checksum mismatch: got '$checksum_got' != expect '$checksum_expected'\n";
}
}