Files
@ 7be31af5bc78
Branch filter:
Location: kallithea/rhodecode/config/pre_receive_tmpl.py - annotation
7be31af5bc78
796 B
text/x-python
changed scope of calling EXTENSIONS from rhodecode for githooks to be able to execute them
a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f a3efdd61a21f | #!/usr/bin/env python
import os
import sys
try:
import rhodecode
from rhodecode.lib.hooks import handle_git_post_receive
except ImportError:
rhodecode = None
def main():
if rhodecode is None:
# exit with success if we cannot import rhodecode !!
# this allows simply push to this repo even without
# rhodecode
sys.exit(0)
repo_path = os.path.abspath('.')
push_data = sys.stdin.read().strip().split(' ')
# os.environ is modified here by a subprocess call that
# runs git and later git executes this hook.
# Environ get's some additional info from rhodecode system
# like IP or username from basic-auth
handle_git_post_receive(repo_path, push_data, os.environ)
sys.exit(0)
if __name__ == '__main__':
main()
|