We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe8b6f commit 8693aadCopy full SHA for 8693aad
1 file changed
internal/utils/server/server.go
@@ -45,6 +45,9 @@ func StartOadinServer(logPath string, pidFilePath string) error {
45
return fmt.Errorf("failed to find oadin executable: %v", err)
46
}
47
48
+ if runtime.GOOS == "windows" {
49
+ execCmd = constants.WindowsOadinExecPath + "\\" + "oadin.exe"
50
+ }
51
cmd := exec.Command(execCmd, "server", "start")
52
cmd.Stdout = logFile
53
cmd.Stderr = logFile
0 commit comments