Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 6002284

Browse files
authored
Merge pull request #2695 from thaJeztah/19.03_backport_fix_vbomml_util
[19.03 backport] Replace vbom.ml/util with fvbommel/sortorder Upstream-commit: bcb1c8486b346d216af118ec1213c668e5daed5a Component: cli
2 parents 07d59f4 + 0100e1c commit 6002284

21 files changed

Lines changed: 26 additions & 27 deletions

File tree

components/cli/cli/command/config/ls.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/docker/cli/cli/command/formatter"
1010
"github.com/docker/cli/opts"
1111
"github.com/docker/docker/api/types"
12+
"github.com/fvbommel/sortorder"
1213
"github.com/spf13/cobra"
13-
"vbom.ml/util/sortorder"
1414
)
1515

1616
// ListOptions contains options for the docker config ls command.

components/cli/cli/command/context/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/docker/cli/cli/command/formatter"
1111
"github.com/docker/cli/cli/context/docker"
1212
kubecontext "github.com/docker/cli/cli/context/kubernetes"
13+
"github.com/fvbommel/sortorder"
1314
"github.com/spf13/cobra"
14-
"vbom.ml/util/sortorder"
1515
)
1616

1717
type listOptions struct {

components/cli/cli/command/network/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/docker/cli/cli/command/formatter"
1010
"github.com/docker/cli/opts"
1111
"github.com/docker/docker/api/types"
12+
"github.com/fvbommel/sortorder"
1213
"github.com/spf13/cobra"
13-
"vbom.ml/util/sortorder"
1414
)
1515

1616
type listOptions struct {

components/cli/cli/command/node/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/docker/cli/cli/command/formatter"
1010
"github.com/docker/cli/opts"
1111
"github.com/docker/docker/api/types"
12+
"github.com/fvbommel/sortorder"
1213
"github.com/spf13/cobra"
13-
"vbom.ml/util/sortorder"
1414
)
1515

1616
type listOptions struct {

components/cli/cli/command/plugin/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"github.com/docker/cli/cli/command"
99
"github.com/docker/cli/cli/command/formatter"
1010
"github.com/docker/cli/opts"
11+
"github.com/fvbommel/sortorder"
1112
"github.com/spf13/cobra"
12-
"vbom.ml/util/sortorder"
1313
)
1414

1515
type listOptions struct {

components/cli/cli/command/secret/ls.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/docker/cli/cli/command/formatter"
1010
"github.com/docker/cli/opts"
1111
"github.com/docker/docker/api/types"
12+
"github.com/fvbommel/sortorder"
1213
"github.com/spf13/cobra"
13-
"vbom.ml/util/sortorder"
1414
)
1515

1616
type listOptions struct {

components/cli/cli/command/service/list.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ import (
55
"fmt"
66
"sort"
77

8-
"vbom.ml/util/sortorder"
9-
108
"github.com/docker/cli/cli"
119
"github.com/docker/cli/cli/command"
1210
"github.com/docker/cli/cli/command/formatter"
1311
"github.com/docker/cli/opts"
1412
"github.com/docker/docker/api/types"
1513
"github.com/docker/docker/api/types/filters"
1614
"github.com/docker/docker/api/types/swarm"
15+
"github.com/fvbommel/sortorder"
1716
"github.com/spf13/cobra"
1817
)
1918

components/cli/cli/command/stack/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/docker/cli/cli/command/stack/kubernetes"
1010
"github.com/docker/cli/cli/command/stack/options"
1111
"github.com/docker/cli/cli/command/stack/swarm"
12+
"github.com/fvbommel/sortorder"
1213
"github.com/spf13/cobra"
13-
"vbom.ml/util/sortorder"
1414
)
1515

1616
func newListCommand(dockerCli command.Cli, common *commonOptions) *cobra.Command {

components/cli/cli/command/system/prune.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
"github.com/docker/cli/opts"
1717
"github.com/docker/docker/api/types/versions"
1818
"github.com/docker/go-units"
19+
"github.com/fvbommel/sortorder"
1920
"github.com/spf13/cobra"
20-
"vbom.ml/util/sortorder"
2121
)
2222

2323
type pruneOptions struct {

components/cli/cli/command/trust/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import (
1010
"github.com/docker/cli/cli/command"
1111
"github.com/docker/cli/cli/command/image"
1212
"github.com/docker/cli/cli/trust"
13+
"github.com/fvbommel/sortorder"
1314
"github.com/sirupsen/logrus"
1415
"github.com/theupdateframework/notary"
1516
"github.com/theupdateframework/notary/client"
1617
"github.com/theupdateframework/notary/tuf/data"
17-
"vbom.ml/util/sortorder"
1818
)
1919

2020
// trustTagKey represents a unique signed tag and hex-encoded hash pair

0 commit comments

Comments
 (0)