diff --git a/pkg/app/app.go b/pkg/app/app.go index e51e5d47c..f12c0f08a 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 3b1d3aa6f..570eeeab3 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -256,6 +256,7 @@ type TranslationSet struct { DiscardFileChangesPrompt string DisabledForGPG string CreateRepo string + NoRecentRepositories string AutoStashTitle string AutoStashPrompt string StashPrefix string @@ -878,6 +879,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 ",