summaryrefslogtreecommitdiffstats
path: root/pkg/app
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-31 18:43:54 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-09-01 11:38:32 +1000
commitae0d88f855773dd76432487509f9af13f987a812 (patch)
tree849249573b2b809a0b9e406cd15ee000cc92ec76 /pkg/app
parentcff1dee6dcb303e789b804bbe270a0032f0b76a7 (diff)
WIP using runDirectCommand with xdg-open
Diffstat (limited to 'pkg/app')
-rw-r--r--pkg/app/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/app/app.go b/pkg/app/app.go
index ffd8807f0..fa2415fc3 100644
--- a/pkg/app/app.go
+++ b/pkg/app/app.go
@@ -73,7 +73,7 @@ func NewApp(config config.AppConfigurer) (*App, error) {
}
var err error
app.Log = newLogger(config)
- app.OSCommand = commands.NewOSCommand(app.Log)
+ app.OSCommand = commands.NewOSCommand(app.Log, config)
app.Tr = i18n.NewLocalizer(app.Log)