From 02b1e5697a96d13eba27642f0b1d09f59b6905d2 Mon Sep 17 00:00:00 2001 From: Grant Linville Date: Tue, 2 Jul 2024 19:46:46 -0400 Subject: [PATCH] debug Signed-off-by: Grant Linville --- integration/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/helpers.go b/integration/helpers.go index ca1c6fe4..eb54c686 100644 --- a/integration/helpers.go +++ b/integration/helpers.go @@ -9,7 +9,7 @@ func GPTScriptExec(args ...string) (string, error) { cmd := exec.Command("../bin/gptscript", args...) if runtime.GOOS == "windows" { out, _ := exec.Command("dir", "..").CombinedOutput() - println(out) + println(string(out)) cmd = exec.Command("..\\bin\\gptscript.exe", args...) }