-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MacUpdate Desktop 6.0; suppress move to /Applications alert
Closes #5072
- Loading branch information
1 parent
668b1a0
commit 8584025
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
class MacupdateDesktop < Cask | ||
url 'https://www.macupdate.com/download/8544/MacUpdate-Desktop-5.2.3.dmg' | ||
appcast 'https://www.macupdate.com/desktop/updates.xml' | ||
version '6.0' | ||
sha256 '5d1b967e20a5c94f37010da576a87f17a49beadae6eac5dab253c605fd3ed338' | ||
|
||
homepage 'https://www.macupdate.com/desktop' | ||
version '5.2.3' | ||
sha256 'd636dc76d1e4573b885f1b65aa5cdad3435ba3cc15387c4b3100f7045e75dfa8' | ||
url 'http://dl.macupdate.com/MacUpdateDesktop6.zip' | ||
appcast 'https://www.macupdate.com/desktop/updates.xml' | ||
|
||
link 'MacUpdate Desktop.app' | ||
after_install do | ||
# Don't ask to move the app bundle to /Applications | ||
system '/usr/bin/defaults', 'write', 'com.macupdate.desktop6', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true' | ||
end | ||
end |