diff --git a/images/windows/scripts/build/Install-Zstd.ps1 b/images/windows/scripts/build/Install-Zstd.ps1 index 20ae3fd2..f0be73ba 100644 --- a/images/windows/scripts/build/Install-Zstd.ps1 +++ b/images/windows/scripts/build/Install-Zstd.ps1 @@ -3,9 +3,10 @@ ## Desc: Install zstd ################################################################################ +# version newer than v1.5.5 has no windows builds yet $downloadUrl = Resolve-GithubReleaseAssetUrl ` -Repo "facebook/zstd" ` - -Version "latest" ` + -Version "1.5.5" ` -UrlMatchPattern "zstd-*-win64.zip" $zstdArchivePath = Invoke-DownloadWithRetry $downloadUrl $zstdName = [IO.Path]::GetFileNameWithoutExtension($zstdArchivePath)