Merge pull request #3346 from theang/master
Fix -debug command line option misbehaviour: forbid stdin redirection…
This commit is contained in:
commit
ba5166da8c
5
main.go
5
main.go
|
@ -112,7 +112,10 @@ func wrappedMain() int {
|
|||
log.Printf("Built with Go Version: %s", runtime.Version())
|
||||
|
||||
// Prepare stdin for plugin usage by switching it to a pipe
|
||||
setupStdin()
|
||||
// But do not switch to pipe in plugin
|
||||
if os.Getenv(plugin.MagicCookieKey) != plugin.MagicCookieValue {
|
||||
setupStdin()
|
||||
}
|
||||
|
||||
config, err := loadConfig()
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue