Skip to content

Commit

Permalink
Suppressed verbose output on tgz extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
shyiko committed Mar 30, 2016
1 parent 9c3cec0 commit 878870a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func installFromTgz(source string, target string) error {
return executeInShell([][]string{
[]string{"", "mkdir -p " + target},
[]string{"Extracting " + source + " to " + target,
"tar xvf " + source + " --strip-components=1 -C " + target},
"tar xzf " + source + " --strip-components=1 -C " + target},
})
}

Expand Down

0 comments on commit 878870a

Please sign in to comment.