Skip to content

Commit

Permalink
bugfix: gulpfile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Oct 21, 2014
1 parent b7f62ff commit 4d653b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
'use strict';

var gulp = require('gulp'),
deploy = require('gulp-gh-pages'),
gutil = require('gulp-util'),
shell = require('gulp-shell'),
stylus = require('gulp-stylus'),
Expand Down Expand Up @@ -68,7 +69,7 @@ gulp.task('watch', function() {

gulp.task('deploy', function () {
gulp.src('./docs/**/*')
.pipe(deploy(options));
.pipe(deploy());
});

gulp.task('bundle', shell.task([
Expand Down

0 comments on commit 4d653b7

Please sign in to comment.