From 79e9595f6e4ef8fae99c0d8233574e54eeb1e51a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Mengu=C3=A9?= Date: Mon, 13 Apr 2026 00:50:34 +0200 Subject: [PATCH] build(deps): declare ourself as a 'go tool' for ourself In go.mod declare ourself as a tool for our own consumption. $ go get -tool ./cmd/task Task developers can now run tasks via 'go tool task'. This is a first step before further experiments of integrations such as #2784. --- go.mod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.mod b/go.mod index 32caa1373d..227b6c202d 100644 --- a/go.mod +++ b/go.mod @@ -134,3 +134,5 @@ require ( google.golang.org/protobuf v1.36.11 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) + +tool github.com/go-task/task/v3/cmd/task