change `+x` to `a+x` in `chmod` command

This commit is contained in:
Roland Walker 2014-05-13 18:11:53 -04:00
parent 832f1a2e86
commit e28c80bfd4
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ class Jxplorer < Cask
sha256 'b51995a93203590e6690d8ad54f73cd7af1c9f2bef6219adca79c58eda71d860'
link 'jxplorer-3.3.1.app'
after_install do
system '/bin/chmod', '+x', "#{destination_path}/jxplorer-3.3.1.app/Contents/MacOS/jxplorer"
system '/bin/chmod', 'a+x', "#{destination_path}/jxplorer-3.3.1.app/Contents/MacOS/jxplorer"
end
end