mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #154] How do I determine which version I'm running? #55
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#55
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Daniel15 on GitHub (Mar 1, 2019).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/154
There's no
--versionflag so I'm not sure how to tell if I'm on the latest version. I installed it usinggo get github.com/joohoi/acme-dns/....@joohoi commented on GitHub (Mar 1, 2019):
Oh, I probably should add version information to startup messages and as a flag as you mentioned. If you did
go get...you can figure out the version by checking the files in$GOPATH, usually~/go/src/github.com/joohoi/acme-dns.@Daniel15 commented on GitHub (Mar 14, 2019):
Thanks. Just worked out that I need to run
go get -u github.com/joohoi/acme-dns/...to update to the latest version... I'm not very experienced with Go yet. Maybe I should switch to using releases from the "Releases" section on Github. :)