Browse Source

Fixes #1842, small typo caused rtl tasks not to run

pull/1875/head
jlukic 9 years ago
parent
commit
9289c037af
2 changed files with 2 additions and 2 deletions
  1. 2
      tasks/build.js
  2. 2
      tasks/watch.js

2
tasks/build.js

@ -61,7 +61,7 @@ module.exports = function(callback) {
// check for right-to-left language
if(config.rtl === true || config.rtl === 'Yes') {
gulp.start('build rtl');
gulp.start('build-rtl');
return;
}

2
tasks/watch.js

@ -59,7 +59,7 @@ module.exports = function(callback) {
// check for right-to-left language
if(config.rtl === true || config.rtl === 'Yes') {
gulp.start('watch rtl');
gulp.start('watch-rtl');
return;
}

Loading…
Cancel
Save