1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-07 22:02:56 +03:00

Merge branch 'master' into feature/anonymous-reporting

This commit is contained in:
Jesse Duffield
2018-08-27 18:50:24 +10:00
12 changed files with 408 additions and 98 deletions

View File

@@ -69,10 +69,7 @@ func NewApp(config config.AppConfigurer) (*App, error) {
}
var err error
app.Log = newLogger(config)
app.OSCommand, err = commands.NewOSCommand(app.Log)
if err != nil {
return app, err
}
app.OSCommand = commands.NewOSCommand(app.Log)
app.Tr = i18n.NewLocalizer(app.Log)