Skip to content

Commit caf00c4

Browse files
committed
party -c -t -d=vendor
1 parent bee5a60 commit caf00c4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pkg/cli/cmd_images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ package cli
77
import (
88
"strings"
99

10-
"github.com/Sirupsen/logrus"
1110
"github.com/scaleway/scaleway-cli/pkg/commands"
11+
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
1212
)
1313

1414
var cmdImages = &Command{

pkg/cli/cmd_ps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ package cli
77
import (
88
"strings"
99

10-
"github.com/Sirupsen/logrus"
1110
"github.com/scaleway/scaleway-cli/pkg/commands"
11+
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
1212
)
1313

1414
var cmdPs = &Command{

pkg/commands/images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ import (
1212
"text/tabwriter"
1313
"time"
1414

15-
"github.com/renstrom/fuzzysearch/fuzzy"
1615
"github.com/scaleway/scaleway-cli/pkg/api"
1716
"github.com/scaleway/scaleway-cli/pkg/utils"
1817
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
1918
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/units"
19+
"github.com/scaleway/scaleway-cli/vendor/github.com/renstrom/fuzzysearch/fuzzy"
2020
)
2121

2222
// ImagesArgs are flags for the `RunImages` function

pkg/commands/ps.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"text/tabwriter"
1111
"time"
1212

13-
"github.com/Sirupsen/logrus"
14-
"github.com/renstrom/fuzzysearch/fuzzy"
13+
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
1514
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/units"
15+
"github.com/scaleway/scaleway-cli/vendor/github.com/renstrom/fuzzysearch/fuzzy"
1616

1717
"github.com/scaleway/scaleway-cli/pkg/utils"
1818
)

0 commit comments

Comments
 (0)