We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcdd652 commit fd665c3Copy full SHA for fd665c3
cmd/cli/host_run.go
@@ -39,10 +39,10 @@ qubesome host-run -profile <profile> firefox - Run firefox on the host and d
39
return err
40
}
41
42
- c := exec.Command(commandName)
+ c := exec.Command(commandName, cmd.Args().Slice()...) //nolint
43
c.Env = append(c.Env, fmt.Sprintf("DISPLAY=:%d", prof.Display))
44
out, err := c.CombinedOutput()
45
- fmt.Println(out)
+ fmt.Println(string(out))
46
47
48
},
0 commit comments