Skip to content
This repository was archived by the owner on Dec 1, 2020. It is now read-only.

Commit a2e52a8

Browse files
author
SegFault42
committed
rename all import online-net -> scaleway
1 parent 1f2b699 commit a2e52a8

File tree

18 files changed

+25
-25
lines changed

18 files changed

+25
-25
lines changed

.goxc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"PackageVersion": "0.0.1",
2121
"TaskSettings": {
2222
"publish-github": {
23-
"owner": "online-net",
23+
"owner": "scaleway",
2424
"prerelease": false,
2525
"repository": "c14-cli"
2626
},

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM golang:1.6
2-
COPY . /go/src/github.com/online-net/c14-cli
3-
WORKDIR /go/src/github.com/online-net/c14-cli
2+
COPY . /go/src/github.com/scaleway/c14-cli
3+
WORKDIR /go/src/github.com/scaleway/c14-cli
44
RUN go install -v ./cmd/c14
55
ENTRYPOINT ["c14"]
66
CMD ["help"]

cmd/c14/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/apex/log"
77
"github.com/apex/log/handlers/text"
88
"github.com/juju/errors"
9-
"github.com/online-net/c14-cli/pkg/commands"
9+
"github.com/scaleway/c14-cli/pkg/commands"
1010
)
1111

1212
func main() {

glide.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/online-net/c14-cli
1+
package: github.com/scaleway/c14-cli
22
import:
33
- package: github.com/QuentinPerez/go-encodeUrl
44
- package: github.com/apex/log

pkg/api/auth/auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"github.com/QuentinPerez/go-encodeUrl"
1212
"github.com/juju/errors"
13-
"github.com/online-net/c14-cli/pkg/utils/configstore"
13+
"github.com/scaleway/c14-cli/pkg/utils/configstore"
1414
)
1515

1616
var (

pkg/api/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"sync"
66

77
"github.com/apex/log"
8-
"github.com/online-net/c14-cli/pkg/utils/configstore"
8+
"github.com/scaleway/c14-cli/pkg/utils/configstore"
99
)
1010

1111
type cacheSafe struct {

pkg/commands/bucket.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66
"github.com/juju/errors"
7-
"github.com/online-net/c14-cli/pkg/api"
7+
"github.com/scaleway/c14-cli/pkg/api"
88
"os"
99
"strings"
1010
"text/tabwriter"

pkg/commands/command.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"golang.org/x/oauth2"
1212

1313
"github.com/cocooma/mflag"
14-
"github.com/online-net/c14-cli/pkg/api"
15-
"github.com/online-net/c14-cli/pkg/api/auth"
16-
"github.com/online-net/c14-cli/pkg/version"
14+
"github.com/scaleway/c14-cli/pkg/api"
15+
"github.com/scaleway/c14-cli/pkg/api/auth"
16+
"github.com/scaleway/c14-cli/pkg/version"
1717
)
1818

1919
// Config represents the informations on the usages

pkg/commands/create.go

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

99
"github.com/docker/docker/pkg/namesgenerator"
1010
"github.com/juju/errors"
11-
"github.com/online-net/c14-cli/pkg/api"
11+
"github.com/scaleway/c14-cli/pkg/api"
1212
)
1313

1414
type create struct {

pkg/commands/files.go

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

99
"github.com/apex/log"
1010
"github.com/dustin/go-humanize"
11-
"github.com/online-net/c14-cli/pkg/api"
12-
"github.com/online-net/c14-cli/pkg/utils/ssh"
11+
"github.com/scaleway/c14-cli/pkg/api"
12+
"github.com/scaleway/c14-cli/pkg/utils/ssh"
1313
"github.com/pkg/sftp"
1414
)
1515

0 commit comments

Comments
 (0)