Skip to content

Commit

Permalink
Temporary debug
Browse files Browse the repository at this point in the history
Former-commit-id: e70cf5c
  • Loading branch information
r-n-o committed Dec 10, 2022
1 parent 5c8ba8b commit 586b5ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main_test
import (
"encoding/hex"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"os/exec"
Expand All @@ -23,6 +24,9 @@ func RunCliWithArgs(t *testing.T, args []string) (string, error) {

cmd := exec.Command(path.Join(currentDir, "build", TURNKEY_BINARY_NAME), args...)
output, err := cmd.CombinedOutput()
if err != nil {
fmt.Println(err.Error())
}

return string(output), err
}
Expand Down

0 comments on commit 586b5ab

Please sign in to comment.