Explicitly set app path perms to 755 on Linux

This commit is contained in:
Kevin Sawicki
2014-08-26 14:29:30 -07:00
parent 37fc8b5945
commit 08decbe533

View File

@@ -25,6 +25,9 @@ module.exports = (grunt) ->
resourcePath = process.cwd()
appPath = getAppPath()
# Ensure application is executable on Linux
fs.chmodSync(appPath, '755') if process.platform is 'linux'
packageSpecQueue = async.queue (packagePath, callback) ->
if process.platform in ['darwin', 'linux']
options =