diff options
Diffstat (limited to 'internal/pkg')
| -rw-r--r-- | internal/pkg/exec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/pkg/exec.go b/internal/pkg/exec.go index 8d736b5b..c61ddc1c 100644 --- a/internal/pkg/exec.go +++ b/internal/pkg/exec.go @@ -281,7 +281,7 @@ func (a *execArtifact) cure(c *CureContext, hostNet bool) (err error) { } z.Uid, z.Gid = (1<<10)-1, (1<<10)-1 if a.msg.IsVerbose() { - z.Stdin, z.Stdout, z.Stderr = os.Stdin, os.Stdout, os.Stderr + z.Stdout, z.Stderr = os.Stdout, os.Stderr } z.Dir, z.Env, z.Path, z.Args = a.dir, a.env, a.path, a.args |
