Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/docker-variant/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/achimnol/docker-variant/pkg/oci"
"github.com/lablup/docker-variant/pkg/oci"
)

// registryFlags carries the flags shared by every registry-touching
Expand Down
4 changes: 2 additions & 2 deletions cmd/docker-variant/detect.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/spf13/cobra"

"github.com/achimnol/docker-variant/pkg/providers"
"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/providers"
"github.com/lablup/docker-variant/pkg/variant"
)

// systemProperties resolves the system properties: from --properties-file /
Expand Down
2 changes: 1 addition & 1 deletion cmd/docker-variant/indexcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/spf13/cobra"

"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/variant"
)

func newIndexCommand() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion cmd/docker-variant/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/spf13/cobra"

"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/variant"
)

func newListCommand() *cobra.Command {
Expand Down
6 changes: 3 additions & 3 deletions cmd/docker-variant/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"github.com/spf13/cobra"

"github.com/achimnol/docker-variant/pkg/docker"
"github.com/achimnol/docker-variant/pkg/oci"
"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/docker"
"github.com/lablup/docker-variant/pkg/oci"
"github.com/lablup/docker-variant/pkg/variant"
)

func newPullCommand() *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions cmd/docker-variant/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/spf13/cobra"

"github.com/achimnol/docker-variant/pkg/docker"
"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/docker"
"github.com/lablup/docker-variant/pkg/variant"
)

func newPushCommand() *cobra.Command {
Expand Down
4 changes: 2 additions & 2 deletions cmd/variant-proxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"os"
"regexp"

"github.com/achimnol/docker-variant/pkg/oci"
"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/oci"
"github.com/lablup/docker-variant/pkg/variant"
)

var variantPathRe = regexp.MustCompile(`^/v2/(.+)/_variants/([^/]+)$`)
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/achimnol/docker-variant
module github.com/lablup/docker-variant

go 1.26.4

Expand Down
2 changes: 1 addition & 1 deletion pkg/oci/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"oras.land/oras-go/v2/content/memory"
"oras.land/oras-go/v2/errdef"

"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/variant"
)

// ErrNoIndex is returned when a repository has no variant index for the
Expand Down
2 changes: 1 addition & 1 deletion pkg/oci/oci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"oras.land/oras-go/v2/content"
"oras.land/oras-go/v2/content/memory"

"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/variant"
)

func TestParseRef(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/providers/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/variant"
)

// PropertiesFileEnv, when set, points at a properties file used instead of
Expand Down
2 changes: 1 addition & 1 deletion pkg/providers/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"context"
"fmt"

"github.com/achimnol/docker-variant/pkg/variant"
"github.com/lablup/docker-variant/pkg/variant"
)

// Provider detects the supported values of one property namespace.
Expand Down
Loading