Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-22 01:04:57 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-22 01:05:28 +0400
commitb8d83d2538e03a7ce400196b7f366b7bf93d18ab (patch)
tree208c4dbf96966cebee62970c8ad471c5475ab469
parent919bc9792a233131ef3e6d9c6e92205e1937ea8e (diff)
Fix gitlab-ci integration
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--lib/gitlab/backend/grack_auth.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/backend/grack_auth.rb b/lib/gitlab/backend/grack_auth.rb
index de18d904916..c2f3b851c07 100644
--- a/lib/gitlab/backend/grack_auth.rb
+++ b/lib/gitlab/backend/grack_auth.rb
@@ -64,7 +64,7 @@ module Grack
token = project.gitlab_ci_service.token
if token.present? && token == password && git_cmd == 'git-upload-pack'
- true
+ return true
end
end