mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
parent
632800eda7
commit
ef825bd242
1 changed files with 3 additions and 0 deletions
|
@ -235,6 +235,9 @@ func Repos(ctx *context.Context) {
|
|||
root := filepath.Join(models.UserPath(ctxUser.Name))
|
||||
if err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
|
||||
if err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
if !info.IsDir() || path == root {
|
||||
|
|
Loading…
Reference in a new issue