Skip to content

Commit be53975

Browse files
committed
replace names
1 parent e9df20b commit be53975

File tree

15 files changed

+19
-19
lines changed

15 files changed

+19
-19
lines changed

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ before:
44
- go mod tidy
55
builds:
66
- ldflags:
7-
- -s -w -X github.com/erdos-one/r2/cmd.version={{.Version}}
7+
- -s -w -X github.com/boatkit-io/r2/cmd.version={{.Version}}
88
env:
99
- CGO_ENABLED=0
1010
goos:

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ sh <(curl https://install.erdos.one/r2)
1414
The library is available as a Go module and can be installed with the following command:
1515

1616
```bash
17-
go get github.com/erdos-one/r2/pkg
17+
go get github.com/boatkit-io/r2/pkg
1818
```

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://github.com/erdos-one/r2">
2+
<a href="https://github.com/boatkit-io/r2">
33
<img alt="R2 CLI" src="assets/bucket.svg" width="150"/>
44
</a>
55
</p>
@@ -9,7 +9,7 @@
99
</h1>
1010

1111
<p align="center">
12-
<a href="https://github.com/erdos-one/r2/releases/latest" title="GitHub release">
12+
<a href="https://github.com/boatkit-io/r2/releases/latest" title="GitHub release">
1313
<img src="https://img.shields.io/github/release/erdos-one/r2.svg">
1414
</a>
1515
<a href="https://opensource.org/licenses/Apache-2.0" title="License: Apache-2.0">
@@ -35,7 +35,7 @@ gap.
3535
To install the `r2` CLI, simply run the following command:
3636

3737
```bash
38-
go install github.com/erdos-one/r2@latest
38+
go install github.com/boatkit-io/r2@latest
3939
```
4040

4141
For more installation options, see [INSTALL.md](INSTALL.md).
@@ -72,7 +72,7 @@ For more usage information — including library usage — see [USAGE.md](USAGE.
7272
## Progress
7373

7474
We're working to implement all the functionality of the AWS CLI's s3 subcommand. As of
75-
[v0.1.0-alpha](https://github.com/erdos-one/r2/tree/v0.1.0-alpha), we have all the commands
75+
[v0.1.0-alpha](https://github.com/boatkit-io/r2/tree/v0.1.0-alpha), we have all the commands
7676
implemented, but not all the options. We're working on it, but if you'd like to lend a helping hand,
7777
we'd much appreciate your help!
7878

USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ r2 help configure
4040
The `r2` library can be used to interact with R2 from within your Go application. All library code
4141
exists in the [pkg](pkg) directory and is well documented.
4242

43-
Documentation may be found [here](https://pkg.go.dev/github.com/erdos-one/r2/pkg).
43+
Documentation may be found [here](https://pkg.go.dev/github.com/boatkit-io/r2/pkg).
4444

4545
### Example
4646

@@ -50,7 +50,7 @@ Uploading a file to a bucket:
5050
package main
5151

5252
import (
53-
r2 "github.com/erdos-one/r2/pkg"
53+
r2 "github.com/boatkit-io/r2/pkg"
5454
)
5555

5656
func main() {

cmd/configure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sort"
1010
"strings"
1111

12-
"github.com/erdos-one/r2/pkg"
12+
"github.com/boatkit-io/r2/pkg"
1313

1414
"github.com/spf13/cobra"
1515
)

cmd/cp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"log"
55

6-
"github.com/erdos-one/r2/pkg"
6+
"github.com/boatkit-io/r2/pkg"
77

88
"github.com/spf13/cobra"
99
)

cmd/ls.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"log"
55

6-
"github.com/erdos-one/r2/pkg"
6+
"github.com/boatkit-io/r2/pkg"
77

88
"github.com/spf13/cobra"
99
)

cmd/mb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/erdos-one/r2/pkg"
7+
"github.com/boatkit-io/r2/pkg"
88

99
"github.com/spf13/cobra"
1010
)

cmd/mv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55
"os"
66

7-
"github.com/erdos-one/r2/pkg"
7+
"github.com/boatkit-io/r2/pkg"
88

99
"github.com/spf13/cobra"
1010
)

cmd/presign.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/erdos-one/r2/pkg"
7+
"github.com/boatkit-io/r2/pkg"
88

99
"github.com/spf13/cobra"
1010
)

cmd/rb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/erdos-one/r2/pkg"
7+
"github.com/boatkit-io/r2/pkg"
88

99
"github.com/spf13/cobra"
1010
)

cmd/rm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"log"
55

6-
"github.com/erdos-one/r2/pkg"
6+
"github.com/boatkit-io/r2/pkg"
77

88
"github.com/spf13/cobra"
99
)

cmd/sync.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"log"
55

6-
"github.com/erdos-one/r2/pkg"
6+
"github.com/boatkit-io/r2/pkg"
77

88
"github.com/spf13/cobra"
99
)

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ OS=`uname -s`
33
ARCH=`uname -m`
44

55
curl -fsSLo $HOME/r2-${OS}-${ARCH}.tar.gz \
6-
https://github.com/erdos-one/r2/releases/download/v0.1.0-alpha/r2-${OS}-${ARCH}.tar.gz
6+
https://github.com/boatkit-io/r2/releases/download/v0.1.0-alpha/r2-${OS}-${ARCH}.tar.gz
77

88
mkdir -p $HOME/r2-v0.1.0-alpha
99
tar -xzf $HOME/r2-${OS}-${ARCH}.tar.gz -C $HOME/r2-v0.1.0-alpha

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import "github.com/erdos-one/r2/cmd"
3+
import "github.com/boatkit-io/r2/cmd"
44

55
func main() {
66
cmd.Execute()

0 commit comments

Comments
 (0)