Skip to content

Commit 4f02601

Browse files
committed
readme: fix a not being where it shouldnt be
1 parent 54b2fee commit 4f02601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ gulp.task('scripts', function() {
297297
var stream = gulp.src(['client/js/**/*.js', '!client/js/vendor/**']);
298298

299299
// Only uglify in production
300-
if (!gulp.env.production) {
300+
if (gulp.env.production) {
301301
stream = stream.pipe(uglify());
302302
}
303303

0 commit comments

Comments
 (0)