Skip to content

Commit

Permalink
contrib: Don't pass -z to tar in analyze-local-images
Browse files Browse the repository at this point in the history
  • Loading branch information
fatalbanana committed Nov 23, 2015
1 parent a6d85e1 commit 8d071e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/analyze-local-images/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func save(imageName string) (string, error) {
var stderr bytes.Buffer
save := exec.Command("docker", "save", imageName)
save.Stderr = &stderr
extract := exec.Command("tar", "xzf", "-", "-C"+path)
extract := exec.Command("tar", "xf", "-", "-C"+path)
extract.Stderr = &stderr
pipe, err := extract.StdinPipe()
if err != nil {
Expand Down

0 comments on commit 8d071e2

Please sign in to comment.