Skip to content
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

be explicit: no fallthrough for apps from titantium.free.fr #7799

Merged
merged 3 commits into from
Dec 5, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Casks/deeper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
url 'http://www.titanium.free.fr/download/108/Deeper.dmg'
elsif MacOS.version == :mavericks
url 'http://www.titanium.free.fr/download/109/Deeper.dmg'
else
elsif MacOS.version == :yosemite
url 'http://www.titanium.free.fr/download/1010/Deeper.dmg'
else
# Unusual case: there is no fall-through. Each version of the software is
# specific to an OS X release, so define nothing when the release is unknown.
end

homepage 'http://www.titanium.free.fr/downloaddeeper.php'
Expand Down
5 changes: 4 additions & 1 deletion Casks/maintenance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
url 'http://www.titanium.free.fr/download/108/Maintenance.dmg'
elsif MacOS.version == :mavericks
url 'http://www.titanium.free.fr/download/109/Maintenance.dmg'
else
elsif MacOS.version == :yosemite
url 'http://www.titanium.free.fr/download/1010/Maintenance.dmg'
else
# Unusual case: there is no fall-through. Each version of the software is
# specific to an OS X release, so define nothing when the release is unknown.
end

homepage 'http://www.titanium.free.fr/downloadmaintenance.php'
Expand Down
5 changes: 4 additions & 1 deletion Casks/onyx.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
url 'http://www.titanium.free.fr/download/108/OnyX.dmg'
elsif MacOS.version == :mavericks
url 'http://www.titanium.free.fr/download/109/OnyX.dmg'
else
elsif MacOS.version == :yosemite
url 'http://www.titanium.free.fr/download/1010/OnyX.dmg'
else
# Unusual case: there is no fall-through. Each version of the software is
# specific to an OS X release, so define nothing when the release is unknown.
end
homepage 'http://www.titanium.free.fr/downloadonyx.php'
license :unknown
Expand Down