Skip to content
This repository has been archived by the owner on Feb 19, 2018. It is now read-only.

Commit

Permalink
Deploy dotfiles with rsync for Apache etc
Browse files Browse the repository at this point in the history
Second part of fixing sondr3/generator-jekyllized#141.
  • Loading branch information
sondr3 committed Jul 28, 2016
1 parent 0a52421 commit 5ccc069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/gulp/templates/tasks/uploading.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5ccc069

Please sign in to comment.