sebastien hace 6 años
padre
commit
70136346a2
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  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);
 }
 
-module.exports = rmDir;
+module.exports = function(dirPath) {
+    // Retry :-)
+    rmDir(dirPath);
+    rmDir(dirPath);
+    rmDir(dirPath);
+};