Skip to content

Commit

Permalink
Update Install-ChocolateyPowershellCommand.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
umol-unibas authored Dec 20, 2024
1 parent 7d50cfd commit e491118
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WASP/Private/Install-ChocolateyPowershellCommand.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ function Install-ChocolateyPowershellCommand() {
$downloadFilePath = Join-Path (Join-Path (Get-Item -Path ".\").FullName "tools") "$($packageName)Install.ps1"

# Check the url found above ($url or $url64bit) and download the file
if ($null -eq $url) {
$urlFound = $url64bit
} elseif ($null -eq $url64bit) {
if ($null -ne $url) {
$urlFound = $url
} elseif ($null -ne $url64bit) {
$urlFound = $url64bit
}

Write-Log "Start editing chocolateyInstall..." -Severity 1
Expand Down

0 comments on commit e491118

Please sign in to comment.