David Arnold 2020-09-29 16:15:20 -05:00 committed by GitHub
parent d7b933553c
commit 7000568dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func execute(opts shellOpts) error {
}()
log.Debug().Msgf("Running command> %s %s", opts.binary, strings.Join(opts.args, " "))
cmd := exec.Command(opts.binary, opts.args...)
cmd := exec.CommandContext(ctx, opts.binary, opts.args...)
var err error
if opts.background {