Re: [git-users] post-merge hook not running

2014-08-19 Thread Etienne Pouliot
I ended up using icrond to launch my hook whenever a file in /salt/.git/logs was modified, wich fill my need. Thank you again! On Monday, August 18, 2014 6:18:11 AM UTC-4, Konstantin Khomoutov wrote: On Fri, 15 Aug 2014 07:55:36 -0700 (PDT) Etienne Pouliot etienne...@gmail.com javascript

[git-users] post-merge hook not running

2014-08-15 Thread Etienne Pouliot
Hello, I'm trying to get my post-merge hook to run but I can't get it to work. Here is my test hook : /salt/.git/hooks/post-merge #!/bin/sh echo pafafds touch /tmp/githook.txt It is executable and I'm doing my git pull with my root account : # ls -l /salt/.git/hooks/post-merge

Re: [git-users] post-merge hook not running

2014-08-15 Thread Etienne Pouliot
That make sense. Any other way to run a hook everytime I do a git pull ? On Friday, August 15, 2014 10:47:49 AM UTC-4, Konstantin Khomoutov wrote: On Fri, 15 Aug 2014 07:06:51 -0700 (PDT) Etienne Pouliot etienne...@gmail.com javascript: wrote: I'm trying to get my post-merge hook to run