From 1de5ca3511b677bdeb3f7ac066dcfeb5b693ae6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Marku=C5=A1i=C4=87?= Date: Sun, 8 May 2022 16:01:30 +0200 Subject: Don't panic when there are no valid git repos --- pkg/app/app.go | 2 +- pkg/i18n/english.go | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/app/app.go b/pkg/app/app.go index d6f4c1928..45dcffcd0 100644 --- a/pkg/app/app.go +++ b/pkg/app/app.go @@ -190,9 +190,9 @@ func (app *App) setupRepo() (bool, error) { return true, nil } } - return false, err } + fmt.Println(app.Tr.NoRecentRepositories) os.Exit(1) } if err := app.OSCommand.Cmd.New("git init").Run(); err != nil { diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go index 3dd9822e5..851cb3a99 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -255,6 +255,7 @@ type TranslationSet struct { DiscardFileChangesPrompt string DisabledForGPG string CreateRepo string + NoRecentRepositories string AutoStashTitle string AutoStashPrompt string StashPrefix string @@ -873,6 +874,7 @@ func EnglishTranslationSet() TranslationSet { DiscardFileChangesPrompt: "Are you sure you want to discard this commit's changes to this file? If this file was created in this commit, it will be deleted", DisabledForGPG: "Feature not available for users using GPG", CreateRepo: "Not in a git repository. Create a new git repository? (y/n): ", + NoRecentRepositories: "Must open lazygit in a git repository. No valid recent repositories. Exiting.", AutoStashTitle: "Autostash?", AutoStashPrompt: "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)", StashPrefix: "Auto-stashing changes for ", -- cgit v1.2.3