Skip to content

Commit ae788cf

Browse files
authored
Merge pull request go-git#854 from ajnavarro/dotgit-not-internal
dotgit: Move package outside internal.
2 parents 8955f06 + c39bd4d commit ae788cf

19 files changed

+9
-10
lines changed

plumbing/transport/test/receive_pack.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ func (s *ReceivePackSuite) receivePackNoCheck(c *C, ep *transport.Endpoint,
231231
// fixtures are generated with read only permissions, this casuses
232232
// errors deleting or modifying files.
233233
rootPath := ep.Path
234-
println("STAT", rootPath)
235234
stat, err := os.Stat(ep.Path)
236235

237236
if rootPath != "" && err == nil && stat.IsDir() {

storage/filesystem/config.go

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

77
"gopkg.in/src-d/go-git.v4/config"
8-
"gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit"
8+
"gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit"
99
"gopkg.in/src-d/go-git.v4/utils/ioutil"
1010
)
1111

storage/filesystem/config_test.go

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

77
"gopkg.in/src-d/go-git.v4/config"
8-
"gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit"
8+
"gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit"
99

1010
. "gopkg.in/check.v1"
1111
"gopkg.in/src-d/go-billy.v4/osfs"

0 commit comments

Comments
 (0)