From 5c870ce3dcb9d0df5b3c8395236ddcbb1acbc6a5 Mon Sep 17 00:00:00 2001 From: Robert Curth Date: Sat, 22 Jun 2013 10:16:41 +0200 Subject: [PATCH] Fixes a problem due to a new version of CleanMyMac CleanMyMac's 2 download url is the same for every version Hashing the download is no good idea. --- Casks/clean-my-mac.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Casks/clean-my-mac.rb b/Casks/clean-my-mac.rb index 1ffc9b663..fef1ac4d7 100644 --- a/Casks/clean-my-mac.rb +++ b/Casks/clean-my-mac.rb @@ -1,7 +1,7 @@ class CleanMyMac < Cask url 'http://dl.devmate.com/com.macpaw.CleanMyMac2/CleanMyMac2.dmg' homepage 'http://macpaw.com/cleanmymac' - version '2.0.3' - sha1 '3bd47a6c1849f42389daa92309e24b395d6eb1f2' + version 'latest' + no_checksum link 'CleanMyMac 2.app' end