Skip to content

Commit 2238290

Browse files
committed
Revert "Using internal vendoring"
This reverts commit 4a42ac3.
1 parent cf60a5d commit 2238290

35 files changed

+44
-45
lines changed

api/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"text/tabwriter"
1919
"text/template"
2020

21-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
21+
log "github.com/Sirupsen/logrus"
2222
)
2323

2424
// ScalewayAPI is the interface used to communicate with the Scaleway API

api/helpers.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ import (
1111
"sync"
1212
"time"
1313

14-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
15-
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/namesgenerator"
16-
"github.com/scaleway/scaleway-cli/vendor/github.com/dustin/go-humanize"
17-
14+
log "github.com/Sirupsen/logrus"
15+
"github.com/docker/docker/pkg/namesgenerator"
16+
"github.com/dustin/go-humanize"
1817
"github.com/scaleway/scaleway-cli/utils"
1918
)
2019

commands/attach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package commands
66

77
import (
8-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
8+
log "github.com/Sirupsen/logrus"
99

1010
types "github.com/scaleway/scaleway-cli/commands/types"
1111
"github.com/scaleway/scaleway-cli/utils"

commands/commit.go

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

10-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
10+
log "github.com/Sirupsen/logrus"
1111

1212
types "github.com/scaleway/scaleway-cli/commands/types"
1313
)

commands/cp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"path/filepath"
1313
"strings"
1414

15-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
16-
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/archive"
15+
log "github.com/Sirupsen/logrus"
16+
"github.com/docker/docker/pkg/archive"
1717

1818
"github.com/scaleway/scaleway-cli/api"
1919
types "github.com/scaleway/scaleway-cli/commands/types"

commands/create.go

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

10-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
10+
log "github.com/Sirupsen/logrus"
1111

1212
"github.com/scaleway/scaleway-cli/api"
1313
types "github.com/scaleway/scaleway-cli/commands/types"

commands/events.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"fmt"
99
"time"
1010

11-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
12-
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/units"
11+
log "github.com/Sirupsen/logrus"
12+
"github.com/docker/docker/pkg/units"
1313

1414
types "github.com/scaleway/scaleway-cli/commands/types"
1515
)

commands/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"time"
1010

11-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
11+
log "github.com/Sirupsen/logrus"
1212

1313
"github.com/scaleway/scaleway-cli/api"
1414
types "github.com/scaleway/scaleway-cli/commands/types"

commands/history.go

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

13-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
14-
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/units"
13+
log "github.com/Sirupsen/logrus"
14+
"github.com/docker/docker/pkg/units"
1515

1616
types "github.com/scaleway/scaleway-cli/commands/types"
1717
utils "github.com/scaleway/scaleway-cli/utils"

commands/images.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"text/tabwriter"
1313
"time"
1414

15-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
16-
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/units"
15+
log "github.com/Sirupsen/logrus"
16+
"github.com/docker/docker/pkg/units"
1717

1818
"github.com/scaleway/scaleway-cli/api"
1919
types "github.com/scaleway/scaleway-cli/commands/types"

0 commit comments

Comments
 (0)