Skip to content

Commit 0fb150b

Browse files
mcdandubee
authored andcommitted
Fixes #180 - common not using the path set when calling the CLI.
1 parent 556cfb0 commit 0fb150b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tests/src/integration/common

tests/src/integration/common/wsk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func (wsk *Wsk)Exists() bool {
6060
func (wsk *Wsk)RunCommand(s ...string) ([]byte, error) {
6161
cs := wsk.Arg
6262
cs = append(cs, s...)
63-
command := exec.Command(wsk.Path, cs...)
63+
command := exec.Command(wsk.Dir + "/" + wsk.Path, cs...)
6464
command.Dir = wsk.Dir
6565
return command.CombinedOutput()
6666
}

0 commit comments

Comments
 (0)