Skip to content

Commit

Permalink
Use github.com/cfergeau/macadam as the module path
Browse files Browse the repository at this point in the history
Using github.com/crc-org/macadam in go.mod but hosting the module in
github.com/cfergeau/macadam would require some form of redirect on
github.com/crc-org/macadam https://go.dev/ref/mod#vcs-find

It's easier to use cfergeau rather than crc-org for now.
  • Loading branch information
cfergeau committed Jul 10, 2024
1 parent ee55bd6 commit aa843c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: all build check clean cross test

GIT_VERSION ?= $(shell git describe --always --dirty)
VERSION_LDFLAGS=-X github.com/crc-org/macadam/pkg/cmdline.gitVersion=$(GIT_VERSION)
VERSION_LDFLAGS=-X github.com/cfergeau/macadam/pkg/cmdline.gitVersion=$(GIT_VERSION)
# opengpg and btrfs support are used by github.com/containers/image and
# github.com/containers/storage when container images are fetched.
# These require external C libraries and their headers, it's simpler to disable
Expand Down
2 changes: 1 addition & 1 deletion cmd/macadam/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log/slog"
"os"

"github.com/crc-org/macadam/pkg/cmdline"
"github.com/cfergeau/macadam/pkg/cmdline"

"github.com/containers/common/pkg/config"
ldefine "github.com/containers/podman/v5/libpod/define"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/crc-org/macadam
module github.com/cfergeau/macadam

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion pkg/cmdline/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

var (
// set using the '-X github.com/crc-org/macadam/pkg/cmdline.gitVersion' linker flag
// set using the '-X github.com/cfergeau/macadam/pkg/cmdline.gitVersion' linker flag
gitVersion = "unknown"

// set through .gitattributes when `git archive` is used
Expand Down

0 comments on commit aa843c0

Please sign in to comment.