Skip to content

Commit

Permalink
Add pushFW clean step back
Browse files Browse the repository at this point in the history
  • Loading branch information
salbahra committed Aug 6, 2023
1 parent 8175fd3 commit c47cd97
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@
},

clean: {
pushFW: [ "build/firmware/*", "build/app.zip" ],
symres: [ "www/res" ]
}
} );
Expand All @@ -221,8 +222,8 @@
grunt.registerTask( "test", [ "default", "blanket_mocha" ] );
grunt.registerTask( "updateLang", [ "shell:updateLang" ] );
grunt.registerTask( "pushEng", [ "shell:pushEng" ] );
grunt.registerTask( "pushFW", [ "compress:makeFW", "shell:updateUI" ] );
grunt.registerTask( "pushBetaFW", [ "compress:makeFW", "shell:updateBetaUI" ] );
grunt.registerTask( "pushFW", [ "compress:makeFW", "shell:updateUI", "clean:makeFW" ] );
grunt.registerTask( "pushBetaFW", [ "compress:makeFW", "shell:updateBetaUI", "clean:makeFW" ] );
grunt.registerTask( "build", [ "default", "shell:symres", "pushFW", "clean:symres" ] );
grunt.registerTask( "bump", [ "default", "replace:about", "replace:cordova", "replace:manifests", "shell:pushBump" ] );
};

0 comments on commit c47cd97

Please sign in to comment.