summaryrefslogtreecommitdiffstats
path: root/pkg/app/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/app/app.go')
-rw-r--r--pkg/app/app.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkg/app/app.go b/pkg/app/app.go
index bb7485cca..f24af6e58 100644
--- a/pkg/app/app.go
+++ b/pkg/app/app.go
@@ -127,7 +127,13 @@ func NewApp(config config.AppConfigurer, filterPath string) (*App, error) {
return app, err
}
- app.GitCommand, err = commands.NewGitCommand(app.Log, app.OSCommand, app.Tr, app.Config, git_config.NewStdCachedGitConfig(app.Log))
+ app.GitCommand, err = commands.NewGitCommand(
+ app.Log,
+ app.OSCommand,
+ app.Tr,
+ app.Config,
+ git_config.NewStdCachedGitConfig(app.Log),
+ )
if err != nil {
return app, err
}