sebastien 6 gadi atpakaļ
vecāks
revīzija
70136346a2
1 mainītis faili ar 6 papildinājumiem un 1 dzēšanām
  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);
+};