Fix boolean.

This commit is contained in:
Kevin Serrano 2016-09-02 14:42:20 -07:00
parent 831ed15777
commit be0c605556
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ function copyTask(opts){
destinations.forEach(function(destination) {
stream = stream.pipe(gulp.dest(destination))
})
stream.pipe(gulpif(disableLiveReload,livereload()))
stream.pipe(gulpif(!disableLiveReload,livereload()))
return stream
}