1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix boolean.

This commit is contained in:
Kevin Serrano 2016-09-02 14:42:20 -07:00
parent 831ed15777
commit be0c605556

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
}