Skip to content

Commit 9e88758

Browse files
fix: rename module; airbyte.io -> github.com/airbytehq (#3)
1 parent efcf5a4 commit 9e88758

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ABCTL_VERSION?=dev
22
.PHONY: build
33
build:
4-
CGO_ENABLED=0 go build -trimpath -o build/ -ldflags "-w -X airbyte.io/abctl/internal/build.Version=$(ABCTL_VERSION)" .
4+
CGO_ENABLED=0 go build -trimpath -o build/ -ldflags "-w -X github.com/airbytehq/abctl/internal/build.Version=$(ABCTL_VERSION)" .
55

66
.PHONY: clean
77
clean:

cmd/local/local.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package local
22

33
import (
4-
"airbyte.io/abctl/internal/local"
5-
"airbyte.io/abctl/internal/telemetry"
64
"context"
75
"errors"
86
"fmt"
7+
"github.com/airbytehq/abctl/internal/local"
8+
"github.com/airbytehq/abctl/internal/telemetry"
99
"github.com/pterm/pterm"
1010
"os"
1111
"path/filepath"

cmd/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package cmd
22

33
import (
4-
"airbyte.io/abctl/cmd/local"
5-
"airbyte.io/abctl/cmd/version"
6-
localcmd "airbyte.io/abctl/internal/local"
74
"errors"
5+
"github.com/airbytehq/abctl/cmd/local"
6+
"github.com/airbytehq/abctl/cmd/version"
7+
localcmd "github.com/airbytehq/abctl/internal/local"
88
"github.com/pterm/pterm"
99
"os"
1010

cmd/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package version
22

33
import (
4-
"airbyte.io/abctl/internal/build"
4+
"github.com/airbytehq/abctl/internal/build"
55
"github.com/pterm/pterm"
66
"github.com/spf13/cobra"
77
)

cmd/version/version_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package version
22

33
import (
4-
"airbyte.io/abctl/internal/build"
54
"bytes"
65
"fmt"
6+
"github.com/airbytehq/abctl/internal/build"
77
"github.com/google/go-cmp/cmp"
88
"github.com/pterm/pterm"
99
"os"

create-release-builds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ abbuild() {
4848
local goarch=$2
4949
local compress=$3
5050
echo " - $goos/$goarch"
51-
GOOS="$goos" GOARCH="$goarch" CGO_ENABLED=0 go build -trimpath -o "$release_dir/abctl-$ABCTL_VERSION-$goos-$goarch/" -ldflags "-w -X airbyte.io/abctl/internal/build.Version=${ABCTL_VERSION}" .
51+
GOOS="$goos" GOARCH="$goarch" CGO_ENABLED=0 go build -trimpath -o "$release_dir/abctl-$ABCTL_VERSION-$goos-$goarch/" -ldflags "-w -X github.com/airbytehq/abctl/internal/build.Version=${ABCTL_VERSION}" .
5252
eval $compress "$goos" "$goarch"
5353
}
5454

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module airbyte.io/abctl
1+
module github.com/airbytehq/abctl
22

33
go 1.21.9
44

internal/local/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package local
22

33
import (
4-
"airbyte.io/abctl/internal/telemetry"
54
"context"
65
"errors"
76
"fmt"
7+
"github.com/airbytehq/abctl/internal/telemetry"
88
"github.com/docker/docker/api/types"
99
"github.com/docker/docker/client"
1010
helmclient "github.com/mittwald/go-helm-client"

internal/local/cmd_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package local
22

33
import (
4-
"airbyte.io/abctl/internal/telemetry"
54
"context"
65
"errors"
6+
"github.com/airbytehq/abctl/internal/telemetry"
77
"github.com/docker/docker/api/types"
88
"github.com/google/go-cmp/cmp"
99
helmclient "github.com/mittwald/go-helm-client"

internal/telemetry/segment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package telemetry
22

33
import (
4-
"airbyte.io/abctl/internal/build"
54
"bytes"
65
"fmt"
6+
"github.com/airbytehq/abctl/internal/build"
77
"github.com/oklog/ulid/v2"
88
"github.com/pbnjay/memory"
99
"k8s.io/apimachinery/pkg/util/json"

0 commit comments

Comments
 (0)