1
0
mirror of https://github.com/bitwarden/help synced 2025-12-11 05:43:20 +00:00

move publish cache outside of project

This commit is contained in:
Kyle Spearrin
2017-05-23 20:49:06 -04:00
parent 6c28639816
commit 77face8570
3 changed files with 2 additions and 4 deletions

View File

@@ -71,5 +71,5 @@ gulp.task('lib', ['clean:lib'], function () {
gulp.task('deploy', [], function () {
return gulp.src(paths.dist + '**/*')
.pipe(ghPages({ cacheDir: './.publish' }));
.pipe(ghPages({ cacheDir: '../.publish_cache/help' }));
});