I am trying to build https://github.com/FiloSottile/age from source.
Cloning the repo and running go build (or go build -x -v) does not appear to actually build anything useful.
10 messages · Page 1 of 1 (latest)
I am trying to build https://github.com/FiloSottile/age from source.
Cloning the repo and running go build (or go build -x -v) does not appear to actually build anything useful.
The actual command seems to be inside the cmd folder, so you'd need to build both cmd/age-keygen and cmd/age:
go build ./cmd/age-keygen
go build ./cmd/age
it did, just not with words 😉