From 0f133ca4310749940cf65a08d9b8ace5d4c234b7 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 5 Sep 2023 10:50:54 +0200 Subject: [PATCH] :bug: Fix more issues on frontend gulpfile --- frontend/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index 18e3edc14..9bdee7124 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -305,7 +305,7 @@ gulp.task("watch", gulp.series("dev:dirs", "build", "watch:main")); ***********************************************/ gulp.task("dist:clean", function(next) { - rimraf(paths.dist, next); + rimraf(paths.dist).finally(next); }); gulp.task("dist:copy", function() {