Skip to content

Commit

Permalink
AU: 1 updated - spotify
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Feb 16, 2018
1 parent 4b6990d commit 47a9b6b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion automatic/spotify/info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"51cd251f978721bb6591981db78760a9-12"|1.0.66.478
"0b62712dec09247c1de59ad30a51592f-12"|1.0.73.345
2 changes: 1 addition & 1 deletion automatic/spotify/spotify.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>spotify</id>
<version>1.0.66.478</version>
<version>1.0.73.345</version>
<title>Spotify</title>
<authors>Spotify</authors>
<projectUrl>http://spotify.com</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/spotify/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ $arguments = @{
softwareName = 'Spotify'
file = Join-Path $downloadDir $installer
url = 'https://download.spotify.com/SpotifyFullSetup.exe'
checksum = '2185510752780AAD6079FE129984EC7E5D0BC4F0D82DB786AC88DEAFB3C781C0'
checksum = '75215730B7E774EDABF76D805066CF9645FB99D2749C8E5E84959F1795DD46A11F96B821E3DB96464D3E76AAEFB084A147C9780B5E004EFEF7EFF1C738071EC1'
fileType = 'exe'
checksumType = 'sha256'
checksumType = 'sha512'
silentArgs = '/silent'
validExitCodes = @(0, 1641, 3010)
}
Expand Down
4 changes: 2 additions & 2 deletions automatic/spotify/tools/ChocolateyUnInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $uninstalled = $false
[array]$key = Get-UninstallRegistryKey @packageArgs

if ($key.Count -eq 1) {
$key | % {
$key | ForEach-Object {
$packageArgs['file'] = "$($_.UninstallString -split ' ' | select -first 1)"

Uninstall-ChocolateyPackage @packageArgs
Expand All @@ -24,5 +24,5 @@ if ($key.Count -eq 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstall."
Write-Warning "Please alert the package maintainer the following keys were matched:"
$key | % { Write-Warning "- $($_.DisplayName)" }
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}

0 comments on commit 47a9b6b

Please sign in to comment.