Skip to content

Commit 66b462f

Browse files
committed
debug
Signed-off-by: Grant Linville <[email protected]>
1 parent 4bc5ee4 commit 66b462f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration/helpers.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import (
88
func GPTScriptExec(args ...string) (string, error) {
99
cmd := exec.Command("../bin/gptscript", args...)
1010
if runtime.GOOS == "windows" {
11-
_ = exec.Command("dir", "..").Run()
11+
out, _ := exec.Command("dir", "..").CombinedOutput()
12+
println(out)
1213
cmd = exec.Command("..\\bin\\gptscript.exe", args...)
1314
}
1415

0 commit comments

Comments
 (0)