Skip to content

Commit 24c1b9c

Browse files
refactor
1 parent 248c9cf commit 24c1b9c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Tar files can optionally be compressed using any of the above compression format
5050

5151
## GoDoc
5252

53-
See <https://pkg.go.dev/github.com/mholt/archiver/v3>
53+
See <https://pkg.go.dev/github.com/dominik-przybyl-wttech/archiver/v3>
5454

5555
## Install
5656

@@ -75,7 +75,7 @@ curl.exe -fsS -A MS https://webinstall.dev/arc | powershell
7575
To install the runnable binary to your \$GOPATH/bin:
7676

7777
```bash
78-
go install github.com/mholt/archiver/v3/cmd/arc@latest
78+
go install github.com/dominik-przybyl-wttech/archiver/v3/cmd/arc@latest
7979
```
8080

8181
### Manually
@@ -203,11 +203,11 @@ The archiver package allows you to easily create and open archives, walk their c
203203
To use as a dependency in your project:
204204

205205
```bash
206-
go get github.com/mholt/archiver/v3
206+
go get github.com/dominik-przybyl-wttech/archiver/v3
207207
```
208208

209209
```go
210-
import "github.com/mholt/archiver/v3"
210+
import "github.com/dominik-przybyl-wttech/archiver/v3"
211211
```
212212

213213
[See the package's GoDoc](https://pkg.go.dev/github.com/mholt/archiver?tab=doc) for full API documentation.

cmd/arc/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"path/filepath"
1111
"strings"
1212

13+
"github.com/dominik-przybyl-wttech/archiver/v3"
1314
"github.com/klauspost/compress/zip"
14-
"github.com/mholt/archiver/v3"
1515
"github.com/nwaples/rardecode"
1616
)
1717

error_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"testing"
88

9-
"github.com/mholt/archiver/v3"
9+
"github.com/dominik-przybyl-wttech/archiver/v3"
1010
)
1111

1212
func TestIllegalPathErrorString(t *testing.T) {

tar_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"path"
77
"testing"
88

9-
"github.com/mholt/archiver/v3"
9+
"github.com/dominik-przybyl-wttech/archiver/v3"
1010
)
1111

1212
func requireRegularFile(t *testing.T, path string) os.FileInfo {

0 commit comments

Comments
 (0)