summaryrefslogtreecommitdiff
path: root/cmd/eduvpn-cli
diff options
context:
space:
mode:
authorJeroen Wijenbergh <jeroen.wijenbergh@geant.org>2026-02-12 12:34:08 +0100
committerJeroen Wijenbergh <jeroen.wijenbergh@geant.org>2026-02-12 12:59:03 +0100
commita30ef6b27e578a4cf0a674b24f5b52b4c1516c63 (patch)
tree27c7321cbceac2a487c1ba17151711de3d438a53 /cmd/eduvpn-cli
parentb00ce8214479c50e137db73c77b0cc1393c5e7d4 (diff)
All: Rename packages that sound useless or clash with std
Diffstat (limited to 'cmd/eduvpn-cli')
-rw-r--r--cmd/eduvpn-cli/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/eduvpn-cli/main.go b/cmd/eduvpn-cli/main.go
index bb90e40..db255cd 100644
--- a/cmd/eduvpn-cli/main.go
+++ b/cmd/eduvpn-cli/main.go
@@ -11,7 +11,7 @@ import (
"codeberg.org/eduVPN/eduvpn-common/client"
"codeberg.org/eduVPN/eduvpn-common/i18n"
- "codeberg.org/eduVPN/eduvpn-common/internal/version"
+ "codeberg.org/eduVPN/eduvpn-common/internal/commonver"
"codeberg.org/eduVPN/eduvpn-common/types/cookie"
srvtypes "codeberg.org/eduVPN/eduvpn-common/types/server"
@@ -148,7 +148,7 @@ func printConfig(url string, cc string, srvType srvtypes.Type, prof string) erro
defer os.RemoveAll(dir) //nolint:errcheck
c, err = client.New(
"org.eduvpn.app.linux",
- fmt.Sprintf("%s-cli", version.Version),
+ fmt.Sprintf("%s-cli", commonver.Version),
dir,
func(oldState client.FSMStateID, newState client.FSMStateID, data any) bool {
stateCallback(oldState, newState, data, prof, dir)