go.mod: pin github.com/tailscale/mkctr (try #2)

Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
Maisem Ali
2022-06-06 10:10:39 -07:00
committed by Maisem Ali
parent 0d972678e7
commit bf2fa7b184
3 changed files with 42 additions and 3 deletions
@@ -2,14 +2,15 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This file exists just so go mod tidy won't remove
// staticcheck's module from our go.mod.
// This file exists just so `go mod tidy` won't remove
// tool modules from our go.mod.
//go:build tools
// +build tools
package tstest
package tools
import (
_ "github.com/tailscale/mkctr"
_ "honnef.co/go/tools/cmd/staticcheck"
)