Skip to content

Commit 1aa90d7

Browse files
committed
Don't convert locale directory names to lower case
Fixes andrewplummer#654
1 parent 4adba2e commit 1aa90d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ function getLocalePaths(l) {
793793
var codes = getLocaleCodes(l);
794794

795795
function getPath(l) {
796-
return path.join('lib', 'locales', l.toLowerCase() + '.js');
796+
return path.join('lib', 'locales', l + '.js');
797797
}
798798

799799
codes.forEach(function(n) {

0 commit comments

Comments
 (0)