Skip to content

Commit

Permalink
go: Correct module path
Browse files Browse the repository at this point in the history
Without this, the module cannot be go installed.

go install github.com/anderseknert/kube-review@latest
go: downloading github.com/anderseknert/kube-review v0.3.0
go: github.com/anderseknert/kube-review@latest: version constraints conflict:
        github.com/anderseknert/kube-review@v0.3.0: parsing go.mod:
        module declares its path as: kube-review
                but was required as: github.com/anderseknert/kube-review

Signed-off-by: Charlie Egan <charlieegan3@users.noreply.github.com>
  • Loading branch information
charlieegan3 committed Nov 8, 2024
1 parent 055c900 commit d6ab001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module kube-review
module github.com/anderseknert/kube-review

go 1.22.0

Expand Down

0 comments on commit d6ab001

Please sign in to comment.