From abb9cef17974e0b21bff8a609c661f07c653a6fa Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Wed, 28 Feb 2024 10:17:03 -0500 Subject: [PATCH] Use githUb.com in the module name for now --- README.md | 2 +- bincapz.go | 2 +- bincapz_test.go | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 65aa3357c..1c5ba6961 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Enumerate the capabilities of a binary through static artifact analysis. ## Installation ```shell -go install chainguard.dev/bincapz@latest +go install github.com/chainguard-dev/bincapz@latest ``` ## Demo - ping diff --git a/bincapz.go b/bincapz.go index deaed0a67..88ec77cf0 100644 --- a/bincapz.go +++ b/bincapz.go @@ -9,7 +9,7 @@ import ( "os" "strings" - "chainguard.dev/bincapz/pkg/bincapz" + "github.com/chainguard-dev/bincapz/pkg/bincapz" "gopkg.in/yaml.v3" "k8s.io/klog/v2" ) diff --git a/bincapz_test.go b/bincapz_test.go index 6738e4716..70637c801 100644 --- a/bincapz_test.go +++ b/bincapz_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "chainguard.dev/bincapz/pkg/bincapz" + "github.com/chainguard-dev/bincapz/pkg/bincapz" "github.com/google/go-cmp/cmp" ) diff --git a/go.mod b/go.mod index d52b06e97..ffed28242 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module chainguard.dev/bincapz +module github.com/chainguard-dev/bincapz go 1.21.6