1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-23 12:18:51 +02:00

Ignore GetRepoPaths error when launching

This commit is contained in:
ppoum 2024-08-03 09:58:43 -04:00 committed by Philippe-Alexandre
parent 74fe069da9
commit ef4fd70f9c

View File

@ -118,11 +118,11 @@ func NewApp(config config.AppConfigurer, test integrationTypes.IntegrationTest,
return app, err return app, err
} }
// If we're not in a repo, repoPaths will be nil. The error is moot for us // If we're not in a repo, GetRepoPaths will return an error. The error is moot for us
// at this stage, since we'll try to init a new repo in setupRepo(), below // at this stage, since we'll try to init a new repo in setupRepo(), below
repoPaths, err := git_commands.GetRepoPaths(app.OSCommand.Cmd, gitVersion) repoPaths, err := git_commands.GetRepoPaths(app.OSCommand.Cmd, gitVersion)
if err != nil { if err != nil {
return app, err common.Log.Infof("Error getting repo paths: %v", err)
} }
showRecentRepos, err := app.setupRepo(repoPaths) showRecentRepos, err := app.setupRepo(repoPaths)