We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gulp -m all -l all build:dev
[11:32:34] Using gulpfile /tmp/Sugar/gulpfile.js [11:32:34] Starting 'build:dev'... [11:32:34] Exporting: sugar-custom.js... [11:32:34] Cannot find locale zh-CN! [11:32:34] Exiting...
This fixes it for me:
diff --git a/gulpfile.js b/gulpfile.js index ee3c7aa4..9b9d2e63 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) {
The text was updated successfully, but these errors were encountered:
Don't convert locale directory names to lower case
1aa90d7
Fixes andrewplummer#654
76c3d0f
Successfully merging a pull request may close this issue.
This fixes it for me:
The text was updated successfully, but these errors were encountered: