I have a post-receive hook that is running as user 'git'. I have a virtualenv /python/ve//bin/activate that is readable by git. Running:

source /python/ve/<name>/bin/activate

works fine for a user in the git group.

When it runs as a post-receive hook after a push, I get the error "source: not found".

I'm not sure where else to look - any hints much appreciated.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

This is something of a guess, since you haven't quoted your complete post-receive hook, but I suspect that you don't have a shebang line pointing to /bin/bash at the top. Your post-receive hook should begin:

#!/bin/bash

I suspect this because if I run a strict Bourne shell, like dash, I get the same error when trying to source anything with source.

link|improve this answer
Brilliant. Thank you. I had accidentally had /bin/sh as I'd copied it from another person's hook. I'd just changed the shell for the git user, but forgot about the shebang line. Thank you for such a quick accurate answer. – willcritchlow Apr 29 '11 at 8:48
No problem - it's very easy to do :) – Mark Longair Apr 29 '11 at 8:54
+1 for the answer with incomplete data. :) – Noufal Ibrahim Apr 29 '11 at 9:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.