-
-
Notifications
You must be signed in to change notification settings - Fork 54
Migrate ghmerge from using python to jq #192
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
Conversation
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.
looks good
@nhorman This needs rebase. |
jq is a nice handy tool to do json parsing, use it instead of python
done |
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.
I'm not entirely convinced that this change is worthwhile. It's not saving much in terms of lines of code, it's introducing a third party dependency and it's moving the parsing out of python into a separate process. The benefit seems to be an improvement in a section of code that isn't oft modified and isn't that difficult to understand.
jq is a nice handy tool to do json parsing, use it instead of python Reviewed-by: Saša Nedvědický <[email protected]> Reviewed-by: Tomas Mraz <[email protected]> Reviewed-by: Richard Levitte <[email protected]> Reviewed-by: Paul Dale <[email protected]> (Merged from #192)
merged to master, thank you! |
jq is a nice handy tool to do json parsing, use it instead of python