Skip to content

Commit 97a98e8

Browse files
authored
Update retriever.go
1 parent b3a8698 commit 97a98e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/pkg/gitjacker/retriever.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func (r *retriever) parsePackMetadata(meta []byte) error {
135135
parts := strings.Split(strings.TrimSpace(line), " ")
136136
if parts[0] == "P" && len(parts) == 2 {
137137
packPath := filepath.Join(r.outputDir, ".git", "objects", "pack", filepath.FromSlash(filepath.Clean("/"+parts[1])))
138-
if err := r.downloadFile(packPath)); err != nil {
138+
if err := r.downloadFile(packPath); err != nil {
139139
logrus.Debugf("Failed to retrieve pack file %s: %s", parts[1], err)
140140
}
141141
}

0 commit comments

Comments
 (0)