Commit 2a6fc1c5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Repository#path_to_repo should always return absolute path

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 49b119fa
...@@ -10,8 +10,11 @@ class Repository ...@@ -10,8 +10,11 @@ class Repository
nil nil
end end
# Return absolute path to repository
def path_to_repo def path_to_repo
@path_to_repo ||= File.join(Gitlab.config.gitlab_shell.repos_path, path_with_namespace + ".git") @path_to_repo ||= File.expand_path(
File.join(Gitlab.config.gitlab_shell.repos_path, path_with_namespace + ".git")
)
end end
def exists? def exists?
......
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