Why can't my post-receive hook run a virtualenv source command?

后端 未结 1 1355
隐瞒了意图╮
隐瞒了意图╮ 2021-01-13 07:02

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/         


        
相关标签:
1条回答
  • 2021-01-13 07:07

    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.

    0 讨论(0)
提交回复
热议问题