summaryrefslogtreecommitdiff
path: root/lib/post-receive-hook
diff options
context:
space:
mode:
authorAriejan de Vroom <ariejan@ariejan.net>2012-03-01 15:09:23 +0100
committerAriejan de Vroom <ariejan@ariejan.net>2012-03-01 15:09:23 +0100
commitbfe0906f2ff7a79064c1866c0278cd0c9440b246 (patch)
tree6d5da24190f0f5315ba0516c3737074f8afab28e /lib/post-receive-hook
parent4587ab6ff64a255577e02334fa0492b5edcb80ea (diff)
parentdf6f74817910e2e3263f214733636ba1d0da41b8 (diff)
downloadgitlab-ce-bfe0906f2ff7a79064c1866c0278cd0c9440b246.tar.gz
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'lib/post-receive-hook')
-rwxr-xr-xlib/post-receive-hook2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/post-receive-hook b/lib/post-receive-hook
index d7354d6515b..93eb96c2a6d 100755
--- a/lib/post-receive-hook
+++ b/lib/post-receive-hook
@@ -8,5 +8,5 @@ do
# For every branch or tag that was pushed, create a Resque job in redis.
pwd=`pwd`
reponame=`basename "$pwd" | cut -d. -f1`
- env -i redis-cli rpush "resque:queue:post_receive" "{\"class\":\"PostReceive\",\"args\":[\"$reponame\",\"$oldrev\",\"$newrev\",\"$ref\"]}" > /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