summaryrefslogtreecommitdiffstats
path: root/pkg/app/app.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-10-24 10:43:48 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-10-30 18:26:06 +1100
commitf704707d291387b2c1d7432c7700fb5398432f18 (patch)
tree4d9a54fbfb789af24f49e215f70b7bfe664f1616 /pkg/app/app.go
parent01d82749b17cd7a048d69c8386044d79548f7893 (diff)
stream output from certain git commands in command log panel
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
}