Skip to content

Commit

Permalink
Merge pull request #163 from carolynvs/fix-windows-install-url
Browse files Browse the repository at this point in the history
Fix URL to windows checksum URL
  • Loading branch information
carolynvs authored Apr 1, 2017
2 parents 808463f + 799ae28 commit 62dc2cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 62dc2cb

Please sign in to comment.