From e8245bacf0a06987b1a2405601e52d852f7a0792 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Thu, 23 Mar 2023 13:52:40 +0300 Subject: [PATCH] Modern Go uses "go install" --- INSTALL | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.44.0