Mercurial hook not executing properly

后端 未结 9 1440
北恋
北恋 2020-12-30 12:02

This should be a very simple thing to have run, but for some reason it won\'t work with my Mercurial repository. All I want is for the remote repo to automatically run

9条回答
  •  一个人的身影
    2020-12-30 12:33

    I spent some time researching this myself. I think the answer to problem is described concisely here:

    Output has to be redirected to stderr (or /dev/null), because stdout is used for the data stream.

    Basically, you're not redirecting to stderr, and hence polluting stdout.

提交回复
热议问题