Skip to content

Commit

Permalink
fix(pipeline): don't show stdout of artifact extraction (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrynhard authored Jan 10, 2018
1 parent 0373fea commit 779bf93
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions .conform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ policies:
- "docker"
- "git"
- "metadata"
- "pipeline"
- "policy"
- "readme"
- "renderer"
Expand Down
1 change: 0 additions & 1 deletion pkg/pipeline/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ func (p *Pipeline) extract(sha, image string, artifact *stage.Artifact) error {
}
for _, args := range argsSlice {
command := exec.Command("docker", args...)
command.Stdout = os.Stdout
command.Stderr = os.Stderr
err := command.Start()
if err != nil {
Expand Down

0 comments on commit 779bf93

Please sign in to comment.