Browse Source

Needless formatting of gulpfile

pull/1645/merge
jlukic 9 years ago
parent
commit
211bc4f44e
1 changed files with 4 additions and 1 deletions
  1. 5
      gulpfile.js

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

Loading…
Cancel
Save