Skip to content

Commit

Permalink
#2299 Fix rtl typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed May 27, 2015
1 parent 80e529b commit 701426b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/build.js
Expand Up @@ -22,10 +22,10 @@ module.exports = function(callback) {

// check for right-to-left (RTL) language
if(config.rtl == 'both') {
gulp.start('built-rtl');
gulp.start('build-rtl');
}
if(config.rtl === true || config.rtl === 'Yes') {
gulp.start('built-rtl');
gulp.start('build-rtl');
return;
}

Expand Down

0 comments on commit 701426b

Please sign in to comment.