fix: service command not running up

This commit is contained in:
braginini 2021-08-17 09:13:25 +02:00
parent e8ca289f4a
commit 2c6748610c

View File

@ -8,6 +8,7 @@ import (
func (p *program) Start(s service.Service) error {
// Start should not block. Do the actual work async.
logger.Info("Starting service") //nolint
go upCmd.Run(p.cmd, p.args)
return nil
}