-
Notifications
You must be signed in to change notification settings - Fork 308
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
Remove the BOM from the only file I have found it on. #206
Conversation
If running Linux a good recursive method for detecting these is: ``` sh-session $ find . -type f -print0 | xargs -0r awk '/^\xEF\xBB\xBF/ {print FILENAME} {nextfile}' ``` Applies to OpenUserJS#200 and OpenUserJS#198
Everyone may see some in |
Throw it into a "dev" directory. We might want to put other things there in the future. |
Remove the BOM from the only file I have found it on.
K... I'll have to test it to see if I can |
|
$ cd libs
$ find ../. -type f -print0 | xargs -0r awk '/^\xEF\xBB\xBF/ {print FILENAME} {nextfile}'
.././views/header.html
.././node_modules/passport-steam/node_modules/passport-openid/node_modules/openid/OpenID.sln
.././node_modules/passport-steam/node_modules/passport-openid/node_modules/openid/OpenID.njsproj
.././node_modules/passport-aol/node_modules/passport-openid/node_modules/openid/OpenID.sln
.././node_modules/passport-aol/node_modules/passport-openid/node_modules/openid/OpenID.njsproj
.././node_modules/passport-google/node_modules/passport-openid/node_modules/openid/OpenID.sln
.././node_modules/passport-google/node_modules/passport-openid/node_modules/openid/OpenID.njsproj
.././node_modules/passport-yahoo/node_modules/passport-openid/node_modules/openid/OpenID.sln
.././node_modules/passport-yahoo/node_modules/passport-openid/node_modules/openid/OpenID.njsproj Seems to be working okay with |
If running Linux a good recursive method for detecting these is:
$ find . -type f -print0 | xargs -0r awk '/^\xEF\xBB\xBF/ {print FILENAME} {nextfile}'
Applies to #200 and #198
Byte Order Mark (BOM)