-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
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
bugfix for UTF16 vs UTF8 problems #471
Conversation
will resubmit with passing lint tests |
You don't have to resubmit :) You can just commit to your branch again and
the PR will update.
…On Mon, 14 Jan 2019, 15:20 CrazyDave, ***@***.***> wrote:
will resubmit with passing lint tests
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#471 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ACAWfkbNArcbkf37VkGtgprWwcbgaX8cks5vDKAigaJpZM4Z-cWX>
.
|
@d98762625 Could this be incorporated into the eventual solution in #291? |
Unfortunately, no (or at least for the current implementation of #291), because it's the "echo" part of the grunt "exec:generateConfig" command, that is causing things to fail. As on Windows, it can output UTF16 instead of UTF8. Closing this temporarily until I can figure out why the Travis CI build is failing with these changes. |
[SECURITY] Dependency Updates
On systems running UTF16 prompt (i.e. CMD and/or PowerShell on Windows), ECHO will output in UTF16 which will not work in nodeJS (must have UTF8)
This change just moves the actions that were in a grunt file shell command, to a javascript file.