Make ctags executable

This commit is contained in:
Kevin Sawicki 2015-04-08 17:39:36 -07:00
parent 8e5323d154
commit d534f2a867

View File

@ -18,4 +18,9 @@ module.exports = (grunt) ->
rm appDir
fs.renameSync path.resolve(appDir, '..', 'new-app'), appDir
ctagsFolder = path.join("#{appDir}.asar.unpacked", 'node_modules', 'symbols-view', 'vendor')
for ctagsFile in fs.readdirSync(ctagsFolder)
fs.chmodSync(path.join(ctagsFolder, ctagsFile), "755")
done()