From: Sergey Matveev Date: Thu, 23 Mar 2023 10:52:40 +0000 (+0300) Subject: Modern Go uses "go install" X-Git-Tag: v1.10.0~2 X-Git-Url: http://www.git.cypherpunks.ru/?p=goircd.git;a=commitdiff_plain;h=e8245bacf0a06987b1a2405601e52d852f7a0792 Modern Go uses "go install" --- diff --git a/INSTALL b/INSTALL index 1d33fb0..0721565 100644 --- a/INSTALL +++ b/INSTALL @@ -1,7 +1,7 @@ goircd requires only standard Go's libraries and consists of single main package. You can install it like that: - $ go get go.cypherpunks.ru/goircd + $ go install go.cypherpunks.ru/goircd@latest or manually: diff --git a/go.mod b/go.mod index 31b5bd6..81844e6 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module go.cypherpunks.ru/goircd -go 1.12 +go 1.17