Skip to content

Commit

Permalink
Merge pull request #763 from kiike/pr/allow_skipping_cleaning_tmp
Browse files Browse the repository at this point in the history
gruntfile: Allow skipping cleaning of tmp
  • Loading branch information
Obijuan authored Jul 11, 2024
2 parents 34ca7e5 + c13e8d3 commit 5df95bf
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 @@ -734,7 +734,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 5df95bf

Please sign in to comment.