最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c# - maven-exec-plugin bat file - Stack Overflow

programmeradmin3浏览0评论

I have C# program that runs multiple commands using "cmd.exe" process. The process is simple: create "cmd.exe" with no window, redirect StandardInput/Output and Error. I write commands to Input and read Output for messages. When some message appears I can run something else.

var cmd = CreateCmdExeProcess();
cmd.StandardInput.WriteLine("mvn clean install");
cmd.StandardInput.Flush();
....
cmd.StandardInput.WriteLine("echo FINISHED");
cmd.StandardInput.Flush();

This was working fine until someone added maven-exec-plugin that runs some .bat file. Now "FINISHED" at the end is never on the output. This is not problem with called bach script, because if I remove all content and leave only "echo" inside, I see it is executed, but all the rest is just not seen.

发布评论

评论列表(0)

  1. 暂无评论