1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-30 04:18:01 +02:00

only delete dist folder contents when cleaned

This commit is contained in:
Kyle Spearrin 2017-09-20 23:42:59 -04:00
parent 8a1e8678f8
commit fa88af8323

View File

@ -190,7 +190,7 @@ gulp.task('watch', function () {
});
gulp.task('dist:clean', function (cb) {
return rimraf(paths.dist, cb);
return rimraf(paths.dist + '**/*', cb);
});
gulp.task('dist:move', function () {