cfssl
cfssl copied to clipboard
Only receive cfssl version 1.2.0 on Raspberry Pi 4
Hi.
I only get Version 1.2.0 when using
go install github.com/cloudflare/cfssl/cmd/...@latest
My System:
go: Version 1.20.6 linux/arm64 Raspberry Pi OS: Debian GNU/Linux 11 (bullseye) uname -m results in: aarch64
However, for Nextcloud I will need cfssl version 1.6.3 at least.
Any ideas?
What are you running to determine the version number? You actually shouldn't get a version number if you run go install
because. (I can fix that by using https://pkg.go.dev/runtime/debug#ReadBuildInfo or something of the sort)
but this is what it looks like for me. Note the dev
instead of 1.6.4
❯ go install github.com/cloudflare/cfssl/cmd/...@latest
❯ ~/go/bin/cfssl version
Version: dev
Runtime: go1.20.6
Actually I may have used
go install github.com/cloudflare/cfssl/cmd/cfssl@latest
instead of
go install github.com/cloudflare/cfssl/cmd/...@latest
Version checked with:
cfssl version
what does which cfssl
give you? it's possible an older version could be taking precedence in your PATH over the one in GOROOT?