1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2025-02-14 05:37:52 +00:00

Merge pull request #82 from vbatts/make_external

Revert "*.go: move the carrierd `archive/tar` to internal/"
This commit is contained in:
Vincent Batts 2025-01-30 14:48:20 -08:00 committed by GitHub
commit b28263d23b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
61 changed files with 5 additions and 6 deletions

View file

@ -5,13 +5,12 @@
package tar_test
import (
"archive/tar"
"bytes"
"fmt"
"io"
"log"
"os"
"github.com/vbatts/tar-split/internal/archive/tar"
)
func Example_minimal() {

View file

@ -7,7 +7,7 @@ import (
upTar "archive/tar"
ourTar "github.com/vbatts/tar-split/internal/archive/tar"
ourTar "github.com/vbatts/tar-split/archive/tar"
)
var testfile = "../../archive/tar/testdata/sparse-formats.tar"

View file

@ -3,7 +3,7 @@ package asm
import (
"io"
"github.com/vbatts/tar-split/internal/archive/tar"
"github.com/vbatts/tar-split/archive/tar"
"github.com/vbatts/tar-split/tar/storage"
)

View file

@ -5,7 +5,7 @@ import (
"fmt"
"io"
"github.com/vbatts/tar-split/internal/archive/tar"
"github.com/vbatts/tar-split/archive/tar"
"github.com/vbatts/tar-split/tar/storage"
)

View file

@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/vbatts/tar-split/internal/archive/tar"
"github.com/vbatts/tar-split/archive/tar"
"github.com/vbatts/tar-split/tar/storage"
)