changed the post-receive hook in order to push the correct repository
Created by: namtzigla
changed the post-receive hook in order to push the correct repository name when the name contain special characters like repository names that contain dots.
Merge request reports
Activity
7 7 do 8 8 # For every branch or tag that was pushed, create a Resque job in redis. 9 9 pwd=`pwd` 10 reponame=`basename "$pwd" | cut -d. -f1` 10 reponame=`basename "$pwd" | sed s/\.git$//`
Please register or sign in to reply