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

Commit

Permalink
Fix syntax error in uploading.js
Browse files Browse the repository at this point in the history
Forgot to remove the $. from uploading to GitHub Pages when I refactored
the code.
  • Loading branch information
sondr3 committed Aug 2, 2016
1 parent 564a8ca commit 5808408
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 @@ -48,7 +48,7 @@ const ghpages = require('gulp-gh-pages');
// 'gulp deploy' -- pushes your dist folder to Github
gulp.task('upload', () => {
return gulp.src('dist/**/*', {dot: true})
.pipe($.ghPages());
.pipe(ghPages());
});
<% } -%>
<% if (noUpload) { -%>
Expand Down

0 comments on commit 5808408

Please sign in to comment.