From be0c605556a21a824bb841f80da58220b8b32058 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Fri, 2 Sep 2016 14:42:20 -0700 Subject: [PATCH] Fix boolean. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 3d28e7198..9f1acbf67 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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 }