Reputation: 62336
The below hook isn't auto updating the repository I'm pushing to. I've verified that I have proper permissions as I'm updating via ssh with the owner of the files.
[hooks]
changegroup = hg update >&2
When I try this without >&2
I get no result either.
Upvotes: 0
Views: 334
Reputation: 78330
In which .hgrc file is that hook found? Try changing it to:
[hooks]
changegroup = echo I RAN
to see if it's being run at all
Upvotes: 1