0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-11-22 05:53:02 +01:00

Refactor iterate git tree

This commit is contained in:
Lunny Xiao 2024-05-25 17:18:19 +08:00
parent b4306dec58
commit 7bd86c731c

View file

@ -105,6 +105,9 @@ func (t *Tree) listEntriesRecursive(ctx context.Context, extraArgs TrustedCmdArg
t.entriesRecursive = append(t.entriesRecursive, entry)
return nil
}, extraArgs)
if err == nil {
t.entriesRecursiveParsed = true
}
return t.entriesRecursive, err
}