Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-przybyl-wttech committed Jul 20, 2023
1 parent 248c9cf commit 24c1b9c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Tar files can optionally be compressed using any of the above compression format

## GoDoc

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

## Install

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

```bash
go install github.com/mholt/archiver/v3/cmd/arc@latest
go install github.com/dominik-przybyl-wttech/archiver/v3/cmd/arc@latest
```

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

```bash
go get github.com/mholt/archiver/v3
go get github.com/dominik-przybyl-wttech/archiver/v3
```

```go
import "github.com/mholt/archiver/v3"
import "github.com/dominik-przybyl-wttech/archiver/v3"
```

[See the package's GoDoc](https://pkg.go.dev/github.com/mholt/archiver?tab=doc) for full API documentation.
Expand Down
2 changes: 1 addition & 1 deletion cmd/arc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"path/filepath"
"strings"

"github.com/dominik-przybyl-wttech/archiver/v3"
"github.com/klauspost/compress/zip"
"github.com/mholt/archiver/v3"
"github.com/nwaples/rardecode"
)

Expand Down
2 changes: 1 addition & 1 deletion error_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"testing"

"github.com/mholt/archiver/v3"
"github.com/dominik-przybyl-wttech/archiver/v3"
)

func TestIllegalPathErrorString(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion tar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path"
"testing"

"github.com/mholt/archiver/v3"
"github.com/dominik-przybyl-wttech/archiver/v3"
)

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

0 comments on commit 24c1b9c

Please sign in to comment.