print git checkout user error

This commit is contained in:
Jeff Carr 2025-01-28 19:23:19 -06:00
parent 6e7874faa6
commit bb7937bb79
2 changed files with 2 additions and 1 deletions

View File

@ -107,6 +107,7 @@ func rillCheckoutUser(repo *gitpb.Repo) error {
return nil return nil
} }
if err := repo.CheckoutUser(); err != nil { if err := repo.CheckoutUser(); err != nil {
log.Info(repo.GetFullPath(), err)
return err return err
} }
return nil return nil

View File

@ -158,8 +158,8 @@ func main() {
for i, line := range lines { for i, line := range lines {
log.Info(i, line) log.Info(i, line)
} }
okExit("patch list")
} }
okExit("patch list")
} }
// todo: redo this logic using forgepb // todo: redo this logic using forgepb