Commit ff2a5cbc authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Pass Stdout to zipfs subcommand.

parent f0c88414
......@@ -74,6 +74,7 @@ func main() {
if *command != "" {
args := strings.Split(*command, " ")
cmd := exec.Command(args[0], args[1:]...)
cmd.Stdout = os.Stdout
cmd.Start()
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment