Skip to content

Commit

Permalink
try #13 with only failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkermichael committed Oct 17, 2022
1 parent 5921611 commit f56cfb0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions acceptance/framework/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ type CLI struct {
// NewCLI compiles the `consul-k8s` CLI and returns a handle to execute commands
// with the binary.
func NewCLI() (*CLI, error) {
cmd := exec.Command("which", "cli")
cmd := exec.Command("pwd")
cmd.Dir = "../../.."
b, _ := cmd.Output()
cmd = exec.Command("cli", "--help")
b, _ = cmd.Output()
fmt.Println("CLI: " + string(b))
fmt.Println(string(b))

cmd = exec.Command("make", "cli-dev")
cmd.Dir = "../../.."
b, err := cmd.Output()
Expand Down

0 comments on commit f56cfb0

Please sign in to comment.