Skip to content

Commit

Permalink
required by grunt-mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
db-developer committed Aug 12, 2021
1 parent e810411 commit 61cd64b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .conf/grunt/mkdir.js
@@ -0,0 +1,23 @@
/*
* grunt-git
* https://github.com/rubenv/grunt-git
*
* Copyright (c) 2013 Ruben Vermeersch
* Licensed under the MIT license.
*
*//* jshint esversion: 6 */

module.exports = function ( grunt, options ) {
return {
build: {
options: {
mode: 0777,
create: [
options.BUILDDIR,
options.DISTDIR,
options.TMPDIR
]
}
}
}
};

0 comments on commit 61cd64b

Please sign in to comment.