Browse Source

Retry Clean

sebastien 6 years ago
parent
commit
70136346a2
1 changed files with 6 additions and 1 deletions
  1. 6 1
      Tools/Gulp/helpers/gulp-rmDir.js

+ 6 - 1
Tools/Gulp/helpers/gulp-rmDir.js

@@ -23,4 +23,9 @@ var rmDir = function(dirPath) {
     fs.rmdirSync(dirPath);
     fs.rmdirSync(dirPath);
 }
 }
 
 
-module.exports = rmDir;
+module.exports = function(dirPath) {
+    // Retry :-)
+    rmDir(dirPath);
+    rmDir(dirPath);
+    rmDir(dirPath);
+};