-
Notifications
You must be signed in to change notification settings - Fork 359
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
Avoid head -c GNUism in reftests #5989
Conversation
the email you authored the commit with isn't recognised as part of your github profile. It's not a big deal but if you want you can amend your commit and/or add that email address to your github profile, and force-(with-lease-)push so it appears as yours |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a missing one in list.unix.test
head -c is not posix-compliant, use cut -b instead.
Thanks a lot! |
head -c
is not posix-compliant, usecut -b
instead.