Skip to content

Commit

Permalink
Fix suffix for 64 bit installers
Browse files Browse the repository at this point in the history
  • Loading branch information
Legrandin committed Oct 29, 2019
1 parent e52f3a5 commit dc1920a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function InstallPython ($python_version, $architecture, $python_home) {
if ($architecture -eq "32") {
$platform_suffix = ""
} else {
$platform_suffix = ".amd64"
$platform_suffix = "-amd64"
}
$filepath = DownloadPython $python_version $platform_suffix
Write-Host "Installing" $filepath "to" $python_home
Expand Down

0 comments on commit dc1920a

Please sign in to comment.