Skip to content

Commit

Permalink
readme: fix a not being where it shouldnt be
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Dec 26, 2013
1 parent 54b2fee commit 4f02601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ gulp.task('scripts', function() {
var stream = gulp.src(['client/js/**/*.js', '!client/js/vendor/**']);

// Only uglify in production
if (!gulp.env.production) {
if (gulp.env.production) {
stream = stream.pipe(uglify());
}

Expand Down

0 comments on commit 4f02601

Please # to comment.