Commit 6424fc71 authored by Florin Stan's avatar Florin Stan

changed the post-receive hook in order to push the correct repository name...

changed the post-receive hook in order to push the correct repository name when the name contain special characters
parent 4afb7b7c
...@@ -7,6 +7,6 @@ while read oldrev newrev ref ...@@ -7,6 +7,6 @@ while read oldrev newrev ref
do do
# For every branch or tag that was pushed, create a Resque job in redis. # For every branch or tag that was pushed, create a Resque job in redis.
pwd=`pwd` pwd=`pwd`
reponame=`basename "$pwd" | cut -d. -f1` reponame=`basename "$pwd" | sed s/\.git$//`
env -i redis-cli rpush "resque:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\",\"$GL_USER\"]}" > /dev/null 2>&1 env -i redis-cli rpush "resque:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\",\"$GL_USER\"]}" > /dev/null 2>&1
done done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment