-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix: contentlanguages need to be matched before piping output to target #5
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.
A most amusing name
@@ -1,8 +1,9 @@ | |||
FROM node:20-alpine | |||
|
|||
RUN apk add --no-cache jq=1.7.1-r0 curl=8.8.0-r0 && \ | |||
RUN apk add --no-cache curl=8.8.0-r0 python3=3.12.3-r1 && \ |
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'd not noticed this removed the jq dependency; that's a nice happy accident
6dc9fec
to
b169f4a
Compare
b169f4a
to
d1eac24
Compare
@@ -0,0 +1,152 @@ | |||
#!/usr/bin/env python3 | |||
|
|||
import unittest |
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.
living in the future eh?
Connects maxlath/wikibase-cli#188
The script is a bit all over the place (i.e. it's doing two totally unrelated things at once), but I felt it's ok since the surface area is still very small and future readers might only be interested in the fact that data is "somehow mangled".