SVN 提交后在启动进程时卡住

发布于 2024-08-24 22:21:42 字数 731 浏览 9 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文