Groovy Subversion 挂钩脚本

发布于 2024-10-06 00:11:33 字数 365 浏览 2 评论 0原文

我想在 Groovy 中编写一些 Subversion (SVN) 挂钩脚本。 SVN 服务器将在 Windows 上运行,根据 SVN 书籍:

您需要提供一个程序,其基本名称是挂钩的名称,其扩展名是 Windows 识别的可执行程序的特殊扩展名之一,例如程序的 .exe 和批处理文件的 .bat。

除了在本地机器上安装 Groovy、设置 GROOVY HOME 环境变量,并将 %GROOVY_HOME%\bin 添加到 PATH 中,还有什么在 SVN 执行 Groovy hook 脚本之前我需要做什么?

谢谢, 大学教师

I'd like to write some Subversion (SVN) hook scripts in Groovy. The SVN server will be running on windows, and according to the SVN book:

you would need to supply a program whose basename is the name of the hook and whose extension is one of the special extensions recognized by Windows for executable programs, such as .exe for programs and .bat for batch files.

Apart from installing Groovy on the local machine, setting the GROOVY HOME env var, and adding %GROOVY_HOME%\bin to the PATH, what else do I need to do before SVN can execute Groovy hook scripts?

Thanks,
Don

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

江南月 2024-10-13 00:11:33

您应该确保您的 groovy 脚本与具有正确参数的 grooovy 相关联,以便 Windows 在双击它们时使用其选项来执行它们。

请注意,您必须以允许 groovy 脚本使用参数运行的方式设置该关联。

不管怎样,关于这个主题的一个好页面似乎可以提供帮助:在 Windows 中调试 Subversion 存储库挂钩

You should make sure your groovy scripts are associated to grooovy with the correct parameters, in order for Windows to execute them with their options when double-clicking them.

Notice you must set that association in a way that allow groovy script to be run with parameters.

Anyway, seems like a good page on that very subject could help : Debugging Subversion Repository Hooks in Windows

债姬 2024-10-13 00:11:33

如果您没有按照 Riduidel 的建议执行此操作,则必须创建一个调用 groovy 的批处理文件,对于预提交挂钩,它将被称为 pre-commit.bat 并将使用参数调用

[1] REPOS-PATH   (the path to this repository)
[2] TXN-NAME     (the name of the txn about to be committed)

这些参数必须传递到您的 groovy 脚本...

If you're not doing it as Riduidel recommends, you have to create a batch file calling groovy, for a precommit hook, it would be called pre-commit.bat and will be called with the parameters

[1] REPOS-PATH   (the path to this repository)
[2] TXN-NAME     (the name of the txn about to be committed)

These have to be passed to your groovy script...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文