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

Commit

Permalink
for file in $(git grep -i quentinperez | cut -d: -f1 | uniq); do sed …
Browse files Browse the repository at this point in the history
…-i s/QuentinPerez/online-net/g "$file"; done
  • Loading branch information
moul committed Aug 15, 2016
1 parent 8747460 commit a2def68
Show file tree
Hide file tree
Showing 19 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.6
COPY . /go/src/github.com/QuentinPerez/c14-cli
WORKDIR /go/src/github.com/QuentinPerez/c14-cli
COPY . /go/src/github.com/online-net/c14-cli
WORKDIR /go/src/github.com/online-net/c14-cli
RUN go install -v ./cmd/c14
ENTRYPOINT ["c14"]
CMD ["help"]
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License
===============

Copyright (c) 2016 QuentinPerez
Copyright (c) 2016 Online.net

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Interact with [Online C14](https://www.online.net/en/c14) API from the command line.

![Online C14 logo](https://raw.githubusercontent.com/QuentinPerez/c14-cli/master/assets/logo.png)
![Online C14 logo](https://raw.githubusercontent.com/online-net/c14-cli/master/assets/logo.png)

#### Table of Contents

Expand Down Expand Up @@ -34,7 +34,7 @@ A command-line tool to manage your C14 storage easily
## Setup

```shell
go install github.com/QuentinPerez/c14-cli/cmd/c14
go install github.com/online-net/c14-cli/cmd/c14
```

## Usage
Expand Down Expand Up @@ -281,12 +281,12 @@ Feel free to contribute :smiley::beers:
2. Ensure you have `$GOPATH` and `$PATH` well configured, something like:
* `export GOPATH=$HOME/go`
* `export PATH=$PATH:$GOPATH/bin`
3. Fetch the project: `go get -u github.com/QuentinPerez/c14-cli`
4. Go to c14-cli directory: `cd $GOPATH/src/github.com/QuentinPerez/c14-cli`
3. Fetch the project: `go get -u github.com/online-net/c14-cli`
4. Go to c14-cli directory: `cd $GOPATH/src/github.com/online-net/c14-cli`
5. Hack: `vim`
6. Build: `make`
7. Run: `./c14`

## License

[MIT](https://github.com/QuentinPerez/c14-cli/blob/master/LICENSE.md)
[MIT](https://github.com/online-net/c14-cli/blob/master/LICENSE.md)
2 changes: 1 addition & 1 deletion cmd/c14/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package main
import (
"os"

"github.com/QuentinPerez/c14-cli/pkg/commands"
"github.com/apex/log"
"github.com/apex/log/handlers/text"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/commands"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package: github.com/QuentinPerez/c14-cli
package: github.com/online-net/c14-cli
import:
- package: github.com/QuentinPerez/go-encodeUrl
- package: github.com/apex/log
Expand Down
4 changes: 2 additions & 2 deletions pkg/api/auth/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (

"golang.org/x/oauth2"

"github.com/QuentinPerez/c14-cli/pkg/utils/configstore"
"github.com/QuentinPerez/go-encodeUrl"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/utils/configstore"
"github.com/QuentinPerez/go-encodeUrl"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"sync"

"github.com/QuentinPerez/c14-cli/pkg/utils/configstore"
"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/utils/configstore"
)

type cacheSafe struct {
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (

"golang.org/x/oauth2"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/QuentinPerez/c14-cli/pkg/api/auth"
"github.com/QuentinPerez/c14-cli/pkg/version"
"github.com/docker/docker/pkg/mflag"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/api/auth"
"github.com/online-net/c14-cli/pkg/version"
)

// Config represents the informations on the usages
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"os"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/docker/docker/pkg/namesgenerator"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/api"
)

type create struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"strings"
"text/tabwriter"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/QuentinPerez/c14-cli/pkg/utils/ssh"
"github.com/apex/log"
"github.com/dustin/go-humanize"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/ssh"
"github.com/pkg/sftp"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/freezze.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"gopkg.in/cheggaaa/pb.v1"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/QuentinPerez/c14-cli/pkg/utils/pgbar"
"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/pgbar"
)

type freeze struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"time"

"github.com/QuentinPerez/c14-cli/pkg/api/auth"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/api/auth"
)

type login struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/ls.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"text/tabwriter"
"time"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/dustin/go-humanize"
"github.com/online-net/c14-cli/pkg/api"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package commands
import (
"sync"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/api"
)

type remove struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/rename.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package commands

import "github.com/QuentinPerez/c14-cli/pkg/api"
import "github.com/online-net/c14-cli/pkg/api"

type rename struct {
Base
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/unfreeze.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

pb "gopkg.in/cheggaaa/pb.v1"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/QuentinPerez/c14-cli/pkg/utils/pgbar"
"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/pgbar"
"github.com/pkg/errors"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import (

"golang.org/x/crypto/ssh/terminal"

"github.com/QuentinPerez/c14-cli/pkg/api"
"github.com/QuentinPerez/c14-cli/pkg/utils/ssh"
"github.com/apex/log"
"github.com/docker/docker/pkg/progress"
"github.com/docker/docker/pkg/streamformatter"
"github.com/dustin/go-humanize"
"github.com/kr/fs"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/ssh"
"github.com/pkg/errors"
"github.com/pkg/sftp"
)
Expand Down
6 changes: 3 additions & 3 deletions vendor/github.com/QuentinPerez/go-encodeUrl/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a2def68

Please sign in to comment.