Prevent text editor backup files and other garbage from getting into crx packages.

This commit is contained in:
ccd0 2016-01-24 22:01:56 -08:00
parent f3646feec7
commit 41e855594d

View File

@ -287,6 +287,7 @@ module.exports = (grunt) ->
clean:
builds: 'builds'
testbuilds: 'testbuilds'
crx: 'testbuilds/crx<%= pkg.meta.suffix[pkg.channel] %>'
tmpcrx: ['tmp-crx', 'testbuilds/updates<%= pkg.meta.suffix.noupdate %>.xml']
tmpuserscript: [
'tmp-userscript',
@ -359,6 +360,7 @@ module.exports = (grunt) ->
]
grunt.registerTask 'build-crx-channel', [
'clean:crx'
'concat:crx'
'copy:crx'
'zip-crx'