Replies: 1 comment
-
I ran into this issue a while back in provider-upjet-aws, where depending on the golang version, upjet would sometimes transform double `` into a "smart quote" like in your example. I don't remember whether it's the new version or the old one that's doing the transformation. I tried tracking it down, and the closest I got was a recent change in some go documentation tool handling the parsing of quotation marks inside comments. It didn't seem like it was obviously applicable to what I was seeing, but it was the only semi-related thing I could find. Ultimately, the double `` in the |
Beta Was this translation helpful? Give feedback.
-
What happened?
Upjet generates different results for me than for another maintainer or the official pipeline
https://github.com/crossplane-contrib/provider-keycloak/blob/main/.github/workflows/ci.yml
Differences seem to be in quotes (mine: one double quote, pipeline: two single quotes), linebreaks and empty lines. You can see some examples here
denniskniep/provider-keycloak@ca7b2f2
denniskniep/provider-keycloak@16990cb
How can we reproduce it?
My assumption is that I had installed the newest go version (1.22) but the pipeline is using v1.21 and I had probably installed the imports using v1.22. Can anyone support in why this is happening?
Beta Was this translation helpful? Give feedback.
All reactions