Skip to content

Commit

Permalink
Update Install.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
haavarstein committed May 1, 2021
1 parent 67e2e87 commit 99ef907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mozilla/Firefox/Install.ps1
Expand Up @@ -20,7 +20,7 @@ Update-Module Evergreen

$Vendor = "Mozilla"
$Product = "FireFox"
$Evergreen = Get-MozillaFirefox | Where-Object { $_.Architecture -eq "x64" -and $_.Channel -eq "LATEST_FIREFOX_VERSION" -and $_.Language -eq "en-US" -and $_.Type -eq "exe" } | Select-Object -First 1
$Evergreen = Get-EvergreenApp -Name MozillaFirefox | Where-Object { $_.Architecture -eq "x64" -and $_.Channel -eq "LATEST_FIREFOX_VERSION" -and $_.Language -eq "en-US" -and $_.Type -eq "exe" } | Select-Object -First 1
$Version = $Evergreen.Version
$URL = $Evergreen.uri
$PackageName = "Firefox"
Expand Down

0 comments on commit 99ef907

Please sign in to comment.