Skip to content

Commit

Permalink
gruntfile: Allow skipping cleaning of tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
kiike committed Jul 10, 2024
1 parent 9001aeb commit c13e8d3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,12 @@ module.exports = function (grunt) {
//-- https://github.com/gruntjs/grunt-contrib-clean
clean: {
//-- Remove temporary folder
tmp: [".tmp", DIST_TMP],
tmp: {
src: [".tmp", DIST_TMP],
options: {
'no-write': grunt.option('dont-clean-tmp')
}
},

//-- Remove folder with generated executable packages
dist: [DIST],
Expand Down

0 comments on commit c13e8d3

Please sign in to comment.