SVN 提交后在启动进程时卡住
我在 VS 中构建了一个脚本,它接收提交后挂钩发送的 2 个参数。
该脚本运行 SVN LOG 以检索有关修订的数据(作者、日期、文件)。
当我从 VS 运行解决方案并使用常量变量作为参数时,它运行得很好。
当我执行exe文件时,也运行得很好。
当我实现钩子脚本时,它在应该从进程读取的地方失败了。
process.Start();
process.WaitForExit();
str = process.StandardOutput.ReadToEnd();
process.WaitForExit();
if (!process.HasExited)
{
try
{
process.Kill();
}
catch (Exception e3)
{
// process is terminated
}
// Write Errors
}
谢谢。
编辑: 提交窗口卡住并且永远无法完成提交。 我用 C# 编写代码...没有显示错误...
I've built a script in VS that receives the 2 arguments sent by post-commit hook.
The script runs SVN LOG to retrieve data about the revision (author, date, files).
When I run the solution from VS with constant vars for the arguments, it runs perfectly.
When I execute the exe file, also runs perfectly.
When I implement the hook script, it fails where it should read from the process.
process.Start();
process.WaitForExit();
str = process.StandardOutput.ReadToEnd();
process.WaitForExit();
if (!process.HasExited)
{
try
{
process.Kill();
}
catch (Exception e3)
{
// process is terminated
}
// Write Errors
}
Thanks.
EDIT:
The commit window stucks and never completes the commit.
I write the code in C#.... there is no errors shown...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论