You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current behaviour is correct, I guess, but 1. Makes it harder to prepare templates for a release with breaking changes and 2. Also makes it a little hard for people who build from source.
So, to handle the resources.GetRemote vs try, I want to do something like this:
{{ifgehugo.Version"v0.141.0"}}{{else}}{{end}}
That doesn't work, so I have to do:
{{iflthugo.Version"v0.140.2"}}{{else}}{{end}}
The above will not be entirely correct if we release v0.141.0 and then do a patch release as v0.140.3.
The text was updated successfully, but these errors were encountered:
The current behaviour is correct, I guess, but 1. Makes it harder to prepare templates for a release with breaking changes and 2. Also makes it a little hard for people who build from source.
So, to handle the
resources.GetRemote
vstry
, I want to do something like this:That doesn't work, so I have to do:
The above will not be entirely correct if we release
v0.141.0
and then do a patch release asv0.140.3
.The text was updated successfully, but these errors were encountered: