From 44d1ed47dcb787624adb5864955b46c7d5e5c197 Mon Sep 17 00:00:00 2001 From: pmenendz Date: Mon, 1 Jun 2026 10:29:00 +0000 Subject: [PATCH] Fix module path: cavalle -> invopop The go.mod declared the module as github.com/cavalle/tsk (a leftover from the original repo), but the module lives at github.com/invopop/tsk. This mismatch made `go install github.com/invopop/tsk@latest` fail with a "module declares its path as" error. Re-path the module to match its canonical location. Co-Authored-By: Claude Opus 4.8 (1M context) --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 39679ed..c94abac 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/cavalle/tsk +module github.com/invopop/tsk go 1.26.2