1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

setup gruntfile for linux deploy & disable finder and updater

This commit is contained in:
Rokt33r
2016-03-09 01:57:36 +09:00
parent 0fe83a0583
commit 2f90890f50
2 changed files with 26 additions and 10 deletions

View File

@@ -115,6 +115,21 @@ module.exports = function (grunt) {
done()
})
break
case 'linux':
Object.assign(opts, {
platform: 'linux',
icon: path.join(__dirname, 'resources/app.icns'),
'app-category-type': 'public.app-category.developer-tools'
})
packager(opts, function (err, appPath) {
if (err) {
grunt.log.writeln(err)
done(err)
return
}
done()
})
break
}
})