From 799ae2822b91c1213b0a272f749d5c43d811cee3 Mon Sep 17 00:00:00 2001 From: Carolyn Van Slyck Date: Fri, 31 Mar 2017 19:52:28 -0500 Subject: [PATCH] Fix URL to windows checksum URL --- install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index 121a12ec..c12af0fa 100644 --- a/install.ps1 +++ b/install.ps1 @@ -27,7 +27,7 @@ function downloadDvm([string] $dvmDir) { # Download latest release $webClient.DownloadFile("https://howtowhale.github.io/dvm/downloads/latest/Windows/$arch/dvm-helper.exe", "$tmpDir\dvm-helper.exe") - $webClient.DownloadFile("https://howtowhale.github.io/dvm/downloads/Windows/$arch/dvm-helper.exe.sha256", "$tmpDir\dvm-helper.exe.256") + $webClient.DownloadFile("https://howtowhale.github.io/dvm/downloads/latest/Windows/$arch/dvm-helper.exe.sha256", "$tmpDir\dvm-helper.exe.256") # Verify the binary was downloaded successfully $checksum = (cat $tmpDir\dvm-helper.exe.256).Split(' ')[0]