From 2efbe9ce4e1a15cc9e36d98343467a23bd1c18d1 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 8 Jul 2013 11:29:46 -0700 Subject: [PATCH] Run partial-clean during deploy task --- Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 2d0e1da1a..10e3fae1a 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -113,5 +113,5 @@ module.exports = (grunt) -> grunt.registerTask('compile', ['coffee', 'less', 'cson']) grunt.registerTask('lint', ['coffeelint', 'csslint', 'lesslint']) grunt.registerTask('ci', ['lint', 'partial-clean', 'update-atom-shell', 'build', 'test']) - grunt.registerTask('deploy', ['update-atom-shell', 'build', 'codesign']) + grunt.registerTask('deploy', ['partial-clean', 'update-atom-shell', 'build', 'codesign']) grunt.registerTask('default', ['update-atom-shell', 'build', 'set-development-version', 'install'])