Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
reuteras committed Jan 17, 2024
1 parent ce4efe7 commit cab925a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/download/common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ function Compare-ToolsDownloaded {
$toolsDownloaded = [System.Collections.Generic.List[PSCustomObject]] @()
}

$localFile = $toolsDownloaded | Where-Object { $_.Name-eq $AppName }
$localFile = $toolsDownloaded | Where-Object { $_.Name -eq $AppName }

# No local file found
if (!$localFile) {
Expand Down Expand Up @@ -598,7 +598,7 @@ function Update-ToolsDownloaded {
$toolsDownloaded = [System.Collections.Generic.List[PSCustomObject]] @()
}

$localFile = $toolsDownloaded | Where-Object { $_.Name-eq $Name }
$localFile = $toolsDownloaded | Where-Object { $_.Name -eq $Name }

# No local file found
if (!$localFile) {
Expand Down

0 comments on commit cab925a

Please sign in to comment.