We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02b1e56 commit 15cfa2fCopy full SHA for 15cfa2f
integration/helpers.go
@@ -8,7 +8,7 @@ import (
8
func GPTScriptExec(args ...string) (string, error) {
9
cmd := exec.Command("../bin/gptscript", args...)
10
if runtime.GOOS == "windows" {
11
- out, _ := exec.Command("dir", "..").CombinedOutput()
+ out, _ := exec.Command("dir", "..\\bin").CombinedOutput()
12
println(string(out))
13
cmd = exec.Command("..\\bin\\gptscript.exe", args...)
14
}
0 commit comments