Merge branch 'master' of github.com:evilmartians/rosa-build

This commit is contained in:
Timothy N. Tsvetkov 2011-03-10 16:40:14 +03:00
commit d3e701f4ad
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