Add logging to file, improve windows console handling

This commit is contained in:
Daniel
2019-07-18 16:15:16 +02:00
parent b30bb25ce3
commit 636c748328
5 changed files with 302 additions and 129 deletions

12
pmctl/console_default.go Normal file
View File

@@ -0,0 +1,12 @@
// +build !windows
package main
import "os/exec"
func attachToParentConsole() (attached bool, err error) {
return true, nil
}
func hideWindow(cmd *exec.Cmd) {
}