Unverified Commit f1de0b55 authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #74324 from mtaufen/fix-windows

Fix hash if statement
parents e24e944c cf3ad9c6
......@@ -129,7 +129,7 @@ function MustDownload-File {
continue
}
# Attempt to validate the hash
if ($Hash -ne $null) {
if ($Hash) {
Try {
Validate-SHA1 -Hash $Hash -Path $OutFile
} Catch {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment