pass config context when running apps

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
Jörn Friedrich Dreyer
2024-07-24 13:30:42 +02:00
parent 7a22dfb6de
commit 008f379a01
42 changed files with 42 additions and 42 deletions

View File

@@ -31,5 +31,5 @@ func Execute(cfg *config.Config) error {
Commands: GetCommands(cfg),
})
return app.Run(os.Args)
return app.RunContext(cfg.Context, os.Args)
}