Skip to content

Commit

Permalink
Merge pull request #6150 from vitorgalvao/change-vagrant-examples
Browse files Browse the repository at this point in the history
replaced vagrant with unity in examples referencing the pkg
  • Loading branch information
vitorgalvao committed Sep 11, 2014
2 parents be96758 + e8ac966 commit 8491b10
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ class Alfred < Cask
end
```

Here is another Cask for `Vagrant.pkg`:
Here is another Cask for `Unity.pkg`:

```ruby
class Vagrant < Cask
version '1.4.3'
sha256 'e7ff13b01d3766829f3a0c325c1973d15b589fe1a892cf7f857da283a2cbaed1'
class Unity < Cask
version '4.5.4'
sha256 '6fb72bfacf78df072559dd9a024a9d47e49b5717c8f17d53f05e2fc74a721876'

url 'https://dl.bintray.com/mitchellh/vagrant/Vagrant-1.4.3.dmg'
homepage 'http://www.vagrantup.com'
url 'http://netstorage.unity3d.com/unity/unity-4.5.4.dmg'
homepage 'http://unity3d.com/unity/'

pkg 'Vagrant.pkg'
uninstall :script => { :executable => 'uninstall.tool', :input => %w[Yes] }
pkg 'Unity.pkg'
uninstall :pkgutil => 'com.unity3d.*'
end
```

Expand Down
2 changes: 1 addition & 1 deletion doc/CASK_LANGUAGE_REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ The first argument to the `pkg` stanza should be a relative path to the `.pkg`
file to be installed. For example:

```ruby
pkg 'Vagrant.pkg'
pkg 'Unity.pkg'
```

Subsequent arguments to `pkg` are key/value pairs which modify the install
Expand Down

0 comments on commit 8491b10

Please sign in to comment.