homebrew-cask-versions/Casks/parse.rb
Roland Walker 38cdf3b074 follow system conventions in parse.rb postflight
- full path to chmod
- use double-dash
- remove double quotes unless needed
2014-10-07 11:16:35 -04:00

15 lines
304 B
Ruby

class Parse < Cask
version :latest
sha256 :no_check
url 'https://www.parse.com/downloads/cloud_code/parse'
homepage 'https://parse.com'
license :unknown
container :type => :naked
binary 'parse'
postflight do
system '/bin/chmod', '--', '0755', "#{destination_path}/parse"
end
end