We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 556cfb0 commit 0fb150bCopy full SHA for 0fb150b
1 file changed
tests/src/integration/common/wsk.go
@@ -60,7 +60,7 @@ func (wsk *Wsk)Exists() bool {
60
func (wsk *Wsk)RunCommand(s ...string) ([]byte, error) {
61
cs := wsk.Arg
62
cs = append(cs, s...)
63
- command := exec.Command(wsk.Path, cs...)
+ command := exec.Command(wsk.Dir + "/" + wsk.Path, cs...)
64
command.Dir = wsk.Dir
65
return command.CombinedOutput()
66
}
0 commit comments