From ab476b71badb733273885f3a4aafc4a976f2407e Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 5 Apr 2026 23:00:38 +0200 Subject: [PATCH] Update package path, update install instructions --- README.md | 2 +- cmd/ctfetch/main.go | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 00d4b3a..351f707 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Tools for working with Certificate Transparency log tiles. ## Install ```bash -go install ./cmd/ctfetch +go install git.ipng.ch/certificate-transparency/ctfetch/cmd/ctfetch@latest ``` ## Usage diff --git a/cmd/ctfetch/main.go b/cmd/ctfetch/main.go index e811a10..5949ede 100644 --- a/cmd/ctfetch/main.go +++ b/cmd/ctfetch/main.go @@ -16,7 +16,7 @@ import ( "strconv" "strings" - "ctfetch/internal/utils" + "git.ipng.ch/certificate-transparency/ctfetch/internal/utils" "filippo.io/sunlight" "golang.org/x/mod/sumdb/tlog" diff --git a/go.mod b/go.mod index db1356f..d448b4d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module ctfetch +module git.ipng.ch/certificate-transparency/ctfetch go 1.24.6