This commit is contained in:
Chris Bednarski 2016-03-15 16:06:25 -07:00
commit 439f85b177
1 changed files with 4 additions and 1 deletions

View File

@ -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 {