Compare commits

..

1 Commits

Author SHA1 Message Date
Jeff McCune
ab5f17c3d2 (#115) Fix goreleaser
Import modules to take the direct dependency and prevent go mod tidy
from modifying go.mod and go.sum which causes goreleaser to fail.
2024-04-10 19:09:30 -07:00
3 changed files with 10 additions and 1 deletions

2
go.mod
View File

@@ -15,6 +15,8 @@ require (
github.com/jackc/pgx/v5 v5.5.5
github.com/lmittmann/tint v1.0.4
github.com/mattn/go-isatty v0.0.20
github.com/mattn/go-runewidth v0.0.9
github.com/olekukonko/tablewriter v0.0.5
github.com/prometheus/client_golang v1.19.0
github.com/rogpeppe/go-internal v1.12.0
github.com/sethvargo/go-retry v0.2.4

View File

@@ -1 +1 @@
1
2

7
tidy.go Normal file
View File

@@ -0,0 +1,7 @@
package holos
// These imports are here to keep go mod tidy from constantly creating a dirty git state which makes goreleaser fail.
import (
_ "github.com/olekukonko/tablewriter"
_ "github.com/mattn/go-runewidth"
)