##// END OF EJS Templates
hooks: fixed SVN hook problem
marcink -
r575:f7204ad7 stable
parent child Browse files
Show More
@@ -654,6 +654,7 b' def svn_pre_commit(repo_path, commit_dat'
654 654 if not extras:
655 655 return 0
656 656
657 extras['hook_type'] = 'pre_commit'
657 658 extras['commit_ids'] = []
658 659 extras['txn_id'] = txn_id
659 660 extras['new_refs'] = {
@@ -682,6 +683,7 b' def svn_post_commit(repo_path, commit_da'
682 683 if not extras:
683 684 return 0
684 685
686 extras['hook_type'] = 'post_commit'
685 687 extras['commit_ids'] = [commit_id]
686 688 extras['txn_id'] = txn_id
687 689 extras['new_refs'] = {
General Comments 0
You need to be logged in to leave comments. Login now