SVN在没有打开浏览器的情况下调用Hudsonserver / Job / TheJob / polling

时间:2011-06-07 08:10:51

标签: svn batch-file hudson-plugin-batch-task

我有一个在Subversion上托管的Projekt。我使用Jenkins(旧Hudson)进行Continoues Integration。

现在我创建一个批处理文件作为Subversion-PostCommithook运行此命令。

start http://hudsonserver/job/TheJob/polling

我不想每2分钟一次。我想通知Hudsonserver。

但是过了一段时间后它会发现任何有效的东西,我看到,在任务管理器中有许多iexplorer.exe打开。

我认为随时都可以打开新的浏览器。

我如何在StartCommand中取消激活浏览器,在不打开浏览器的情况下调用URL?

1 个答案:

答案 0 :(得分:1)

使用Wget for Windows:http://gnuwin32.sourceforge.net/packages/wget.htm 或任何其他控制台HTTP客户端

E.g。而不是开始http://hudsonserver/job/TheJob/polling

写:wget.exe -O - http://hudsonserver/job/TheJob/polling