From cd63f3c0edf3b318ff55d294bce474d550d5f402 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sat, 1 Aug 2015 10:04:02 +1000 Subject: Fix rsync releasing --- gulpfile.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 612ebee..77664c9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -300,11 +300,12 @@ 'package:images', 'package:css', 'package:js']); gulp.task('rsync', function () { - gulp.src('dest/**') + gulp.src(dir.dist) .pipe(rsync({ - root: 'dest', + root: dir.dist, hostname: 'kleos.inaugust.com', - destination: '/var/www/inaugust.com/talks' + destination: '/var/www/inaugust.com', + recursive: true })); }); /** -- cgit v1.2.3