Skip to content

Commit

Permalink
Merge pull request #1238 from nsleigh/master
Browse files Browse the repository at this point in the history
(googlechromebeta) - bug fix
  • Loading branch information
majkinetor authored Mar 5, 2019
2 parents 47b3655 + 71cdecd commit 3e11455
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion automatic/googlechromebeta/googlechromebeta.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>googlechromebeta</id>
<version>73.0.3683.39-beta</version>
<version>73.0.3683.56-beta</version>
<title>Google Chrome Beta</title>
<owners>chocolatey,nsleigh</owners>
<authors>Google Inc.</authors>
Expand Down
6 changes: 3 additions & 3 deletions automatic/googlechromebeta/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1

$version = '73.0.3683.39'
$version = '73.0.3683.56'
if ($version -eq (Get-ChromeBetaVersion)) {
Write-Host "Google Chrome Beta $version is already installed."
return
Expand All @@ -12,8 +12,8 @@ $packageArgs = @{
fileType = 'MSI'
url = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise.msi'
url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise64.msi'
checksum = '2a86d00677673d6e14dca4059d13dad46c74758cc7da1fe7da4ef6d4dfdb4e49'
checksum64 = '61d0a5f5f65326d392c6332c77c74495e85256a996731d8b2fa41753599a42b8'
checksum = '6da274a1b59029a6e3add714df01176b26ad42bac8f213c6ffded92fdcc61596'
checksum64 = '1575011267ff1fd9f51c724552d491323db4fd40735a91335bb532c36a0b147f'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down
2 changes: 1 addition & 1 deletion automatic/googlechromebeta/update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function global:au_GetLatest {
@{
URL32 = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise.msi'
URL64 = 'https://dl.google.com/tag/s/dl/chrome/install/beta/googlechromebetastandaloneenterprise64.msi'
Version = $(Get-FixVersion $version -OnlyFixBelowVersion $paddedUnderVersion) + "-beta"
Version = Get-FixVersion $version -OnlyFixBelowVersion $paddedUnderVersion
RemoteVersion = $version
}
}
Expand Down

0 comments on commit 3e11455

Please sign in to comment.