diff --git a/integration/helpers.go b/integration/helpers.go index 500604e2..ca1c6fe4 100644 --- a/integration/helpers.go +++ b/integration/helpers.go @@ -8,7 +8,8 @@ import ( func GPTScriptExec(args ...string) (string, error) { cmd := exec.Command("../bin/gptscript", args...) if runtime.GOOS == "windows" { - _ = exec.Command("dir", "..").Run() + out, _ := exec.Command("dir", "..").CombinedOutput() + println(out) cmd = exec.Command("..\\bin\\gptscript.exe", args...) }