Skip to content

Commit a5432e8

Browse files
authored
Fix install script (#417)
1 parent 6f3c61d commit a5432e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function Install-Post-0-4-0 {
115115
Write-Verbose "Installing using post-0.4.0 method"
116116

117117
$repo = if ([string]::IsNullOrEmpty($Env:AZUREAUTH_REPO)) { 'AzureAD/microsoft-authentication-cli' } else { $Env:AZUREAUTH_REPO }
118-
$releaseName = if ([version]::Parse($version) -lt [version]::Parse("0.9.0")) { "azureauth-${version}-win10-x64" } else { azureauth-${version}-win-x64 }
118+
$releaseName = if ([version]::Parse($version) -lt [version]::Parse("0.9.0")) { "azureauth-${version}-win10-x64" } else { "azureauth-${version}-win-x64" }
119119
$releaseFile = "${releaseName}.zip"
120120
$releaseUrl = "https://github.com/${repo}/releases/download/${version}/$releaseFile"
121121
$azureauthDirectory = if ([string]::IsNullOrEmpty($Env:AZUREAUTH_INSTALL_DIRECTORY)) {

0 commit comments

Comments
 (0)