This commit is contained in:
Lunny Xiao
2025-10-03 12:25:46 -07:00
parent 376476150e
commit 7530fb23a6
3 changed files with 6 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ func InitCommand(cmd *cli.Command) *context.TeaContext {
// try to read local git repo & extract context: if repoFlag specifies a valid path, read repo in that dir,
// otherwise attempt PWD. if no repo is found, continue with default login
if c.LocalRepo, c.Login, c.RepoSlug, err = context.ContextFromLocalRepo(repoPath, remoteFlag); err != nil {
if c.LocalRepo, c.Login, c.RepoSlug, err = context.FromLocalRepo(repoPath, remoteFlag); err != nil {
if err == context.ErrNotAGiteaRepo || err == gogit.ErrRepositoryNotExists {
// we can deal with that, commands needing the optional values use ctx.Ensure()
} else {