fixes TLA+ app installation with correct app name.

previously the application bundle didn't use the "branded"
name. The 1.5.2 version now uses "TLA+ Toolbox.app" as the name
for the application bundle.
This commit is contained in:
Markus Fix
2016-01-12 14:33:50 +00:00
committed by Vítor Galvão
parent 82d1ae8c36
commit 12c401c39a
+4 -7
View File
@@ -8,12 +8,9 @@ cask 'tla-plus-toolbox' do
homepage 'https://research.microsoft.com/en-us/um/people/lamport/tla/toolbox.html'
license :mit
# Renamed for clarity: app name is inconsistent with its branding.
# Original discussion: https://github.com/caskroom/homebrew-cask/pull/8829
app 'toolbox/toolbox.app', :target => 'TLA+ Toolbox.app'
app 'TLA+ Toolbox.app'
caveats <<-EOS.undent
#{token} requires Java. You can install the latest version with
brew cask install java
EOS
caveats do
depends_on_java
end
end