This commit is contained in:
Alexey Nayden 2011-03-10 16:39:52 +03:00
parent eccb4e0a6c
commit 989d228964
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class Project < ActiveRecord::Base
# Redefining a method from Project::HasRepository module to reflect current situation
def git_repo_path
@git_repo_path ||= File.join(APP_CONFIG['root_path'], platform.unixname, project.unixname, project.unixname + '.git')
@git_repo_path ||= File.join(APP_CONFIG['root_path'], platform.unixname, unixname, unixname + '.git')
end
protected