From abd9b5fa323860bf16f26cc2da3676db45279dba Mon Sep 17 00:00:00 2001 From: Russell Bunch Date: Thu, 30 Nov 2023 21:46:10 -0600 Subject: [PATCH] Fixes #30 - Missed tidy `make` invokes `go mod tidy`, when this runs with the current commit the `go.mod` file is updated. The update causes the repository to report as "unclean." --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 7dd033d..bc9edd4 100644 --- a/go.mod +++ b/go.mod @@ -31,6 +31,7 @@ require ( github.com/spf13/cobra v1.8.0 github.com/spf13/viper v1.17.0 github.com/stmcginnis/gofish v0.14.0 + gopkg.in/yaml.v3 v3.0.1 ) require ( @@ -53,5 +54,4 @@ require ( golang.org/x/sys v0.12.0 // indirect golang.org/x/text v0.13.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect - gopkg.in/yaml.v3 v3.0.1 // indirect )