Skip to content

Commit

Permalink
Don't convert locale directory names to lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
jikamens committed Aug 5, 2019
1 parent 4adba2e commit 1aa90d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -793,7 +793,7 @@ function getLocalePaths(l) {
var codes = getLocaleCodes(l);

function getPath(l) {
return path.join('lib', 'locales', l.toLowerCase() + '.js');
return path.join('lib', 'locales', l + '.js');
}

codes.forEach(function(n) {
Expand Down

0 comments on commit 1aa90d7

Please sign in to comment.