1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-22 02:21:34 +01:00

only delete dist folder contents when cleaned

This commit is contained in:
Kyle Spearrin 2017-09-20 23:42:26 -04:00
parent f7fbdf2081
commit f81e7b02dc

View File

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