From 5ccc0693ee6497f9ed450f1bc498ef33cb9a4c1a Mon Sep 17 00:00:00 2001 From: Sondre Nilsen Date: Thu, 28 Jul 2016 16:16:30 +0200 Subject: [PATCH] Deploy dotfiles with rsync for Apache etc Second part of fixing sondr3/generator-jekyllized#141. --- generators/gulp/templates/tasks/uploading.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/gulp/templates/tasks/uploading.js b/generators/gulp/templates/tasks/uploading.js index 1cf5323..f9f8a81 100644 --- a/generators/gulp/templates/tasks/uploading.js +++ b/generators/gulp/templates/tasks/uploading.js @@ -32,7 +32,7 @@ const rsync = require('gulp-rsync'); gulp.task('upload', () => { var credentials = JSON.parse(fs.readFileSync('rsync-credentials.json', 'utf8')); - return gulp.src('dist/**') + return gulp.src('dist/**', {dot: true}) .pipe(rsync({ root: 'dist', hostname: credentials.hostname,