From 74eccd86fa8a02357d72cc0466b43dbefbc7e2ea Mon Sep 17 00:00:00 2001 From: Karl Viiburg Date: Thu, 15 Jan 2015 22:08:51 +0200 Subject: [PATCH] Properly parse RTL question --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5658afcba..9835bce8b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -864,7 +864,7 @@ gulp.task('install', 'Set-up project for first time', function () { }; } if(answers.rtl) { - json.rtl = answers.rtl; + json.rtl = answers.rtl == "yes" ? true : false; } if(answers.site) { json.paths.source.site = answers.site + '/';