From 76c3d0f67d9206b81340ff25f7c19b1aa0386d76 Mon Sep 17 00:00:00 2001 From: Jonathan Kamens Date: Mon, 5 Aug 2019 09:30:00 -0400 Subject: [PATCH] Don't convert locale directory names to lower case Fixes andrewplummer/Sugar#654 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ee3c7aa47..9b9d2e637 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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) {