s/.git/[leafName]

Co-authored-by: Pieter Noordhuis <pieter.noordhuis@databricks.com>
This commit is contained in:
Denis Bilenko 2024-12-04 12:13:25 +01:00 committed by GitHub
parent a623cfdd23
commit d0b088af9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ func findLeafInTree(p string, leafName string) (string, error) {
_, err = os.Stat(filepath.Join(p, leafName))
if err == nil {
// found .git in p
// Found [leafName] in p
return p, nil
}