Loading
pv-migrate: remove extra v prefix from ldflags
`main.version` and `main.commit` were set to `v${version}` via ldflags.
However, version 3+ of pv-migrate prepends `v` internally when resolving
Kubernetes helper images, producing `vv3.3.0` instead of `v3.3.0`. Drop
the hardcoded `v` prefix from the ldflags so the software receives a
bare version string and constructs the image tag correctly. This also
aligns the behavior with goreleaser.