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 + '/';