From 211bc4f44eba81f81802e8db932800271ef3deec Mon Sep 17 00:00:00 2001 From: jlukic Date: Thu, 15 Jan 2015 16:28:35 -0500 Subject: [PATCH] Needless formatting of gulpfile --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9835bce8b..cf5c4d7c3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -864,7 +864,10 @@ gulp.task('install', 'Set-up project for first time', function () { }; } if(answers.rtl) { - json.rtl = answers.rtl == "yes" ? true : false; + json.rtl = (answers.rtl == 'yes') + ? true + : false + ; } if(answers.site) { json.paths.source.site = answers.site + '/';