-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Backblaze Uninstaller and switch to latest version as Backblaze downloads are unversioned #88039
Use Backblaze Uninstaller and switch to latest version as Backblaze downloads are unversioned #88039
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,14 @@ | ||
cask "backblaze" do | ||
version "7.0.2.464" | ||
sha256 "4956a72674d1901a6ec5a98ec0089ebfde743c5bb63e7644c3103e113e26d6d8" | ||
version :latest | ||
sha256 :no_check | ||
|
||
url "https://secure.backblaze.com/mac/install_backblaze.dmg" | ||
appcast "https://secure.backblaze.com/api/clientversion.xml", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The whole point of the appcast is that we can detect when updates are available. It’s never* correct to delete a functioning appcast. * It can happen, but it’s so rare it happened maybe once in almost a decade. |
||
must_contain: "mac_version=\"#{version}\"" | ||
name "Backblaze" | ||
homepage "https://backblaze.com/" | ||
|
||
installer manual: "Backblaze Installer.app" | ||
|
||
uninstall launchctl: [ | ||
"com.backblaze.bzserv", | ||
"com.backblaze.bzbmenu", | ||
], | ||
delete: [ | ||
"#{appdir}/Backblaze.app", | ||
"/Library/PreferencePanes/BackblazeBackup.prefPane", | ||
] | ||
uninstall script: "#{staged_path}/Backblaze Uninstaller.app/Contents/MacOS/Backblaze Uninstaller" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not a script, it will call a GUI which complicates automation and which we do not want until we can do it properly. |
||
|
||
zap trash: [ | ||
"/Library/Backblaze.bzpkg", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It’s by having a version that
brew upgrade
can work properly. You’re removing that ability.