avg-antivirus: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:17:05 +01:00
parent ba911f44fc
commit f46e6df2d2
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 19 additions and 19 deletions

View File

@ -1,30 +1,30 @@
cask 'avg-antivirus' do
cask "avg-antivirus" do
version :latest
sha256 :no_check
# s-install.avcdn.net/mac-av/ was verified as official when first introduced to the cask
url 'https://s-install.avcdn.net/mac-av/10_10/AAVG/avg_mac_security_online.dmg'
name 'AVG Antivirus for Mac'
homepage 'https://www.avg.com/us-en/avg-antivirus-for-mac'
url "https://s-install.avcdn.net/mac-av/10_10/AAVG/avg_mac_security_online.dmg"
name "AVG Antivirus for Mac"
homepage "https://www.avg.com/us-en/avg-antivirus-for-mac"
pkg 'Install AVG AntiVirus.pkg'
pkg "Install AVG AntiVirus.pkg"
uninstall script: {
executable: '/Applications/AVGAntivirus.app/Contents/Backend/utils/com.avg.uninstall.app/Contents/Resources/uninstall.sh',
sudo: true,
},
pkgutil: 'com.avg.pkg.hub',
executable: "/Applications/AVGAntivirus.app/Contents/Backend/utils/com.avg.uninstall.app/Contents/Resources/uninstall.sh",
sudo: true,
},
pkgutil: "com.avg.pkg.hub",
launchctl: [
'com.avg.hub',
'com.avg.hub.schedule',
'com.avg.hub.xpc',
]
"com.avg.hub",
"com.avg.hub.schedule",
"com.avg.hub.xpc",
]
zap trash: [
'/Library/Application Support/AVGAntivirus',
'/Library/Application Support/AVGHUB',
'~/Library/Application Support/AVGAntivirus',
'~/Library/Application Support/AVGHUB',
'~/Library/Logs/AVGHUB',
]
"/Library/Application Support/AVGAntivirus",
"/Library/Application Support/AVGHUB",
"~/Library/Application Support/AVGAntivirus",
"~/Library/Application Support/AVGHUB",
"~/Library/Logs/AVGHUB",
]
end