diff options
| author | Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> | 2025-05-06 16:35:27 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> | 2025-05-06 16:40:51 +0200 |
| commit | c6742beb5fb414970de114fd011108c217d0f951 (patch) | |
| tree | 899854622293e432dd11122b0c5a39e7fb6f0a45 /client/client.go | |
| parent | c18e5071f6d073f701dd45b31e481f2bac8ec0d8 (diff) | |
i18nerr: Properly fix gotext dependencies
We did the dummy import in i18nerr, but that copies gotext's flags and
adds them to the eduvpn-cli example CLI. Apparently if we specify
@latest in the go run part for go generate, already all i18n deps are
properly fetched.
Diffstat (limited to 'client/client.go')
| -rw-r--r-- | client/client.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client.go b/client/client.go index ea5b2b9..d668eb0 100644 --- a/client/client.go +++ b/client/client.go @@ -1,4 +1,4 @@ -//go:generate go run golang.org/x/text/cmd/gotext -srclang=en update -out=zgotext.go -lang=cs,da,de,en,es,fr,it,nl,pt,sl,ukr +//go:generate go run golang.org/x/text/cmd/gotext@latest -srclang=en update -out=zgotext.go -lang=cs,da,de,en,es,fr,it,nl,pt,sl,ukr // Package client implements the public interface for creating eduVPN/Let's Connect! clients package client |
