Commit 61586093 authored by lauraMon's avatar lauraMon

Moved file location, updated var name

parent 71b3b5b7
...@@ -29,8 +29,8 @@ namespace :gitlab do ...@@ -29,8 +29,8 @@ namespace :gitlab do
) )
project = Project.find(args.project_id) project = Project.find(args.project_id)
content = File.read(Rails.root.join('spec', 'fixtures', 'metrics', 'dashboard', 'development_metrics.yml')) content = File.read(Rails.root.join('spec', 'fixtures', 'lib', 'gitlab', 'metrics', 'dashboard', 'development_metrics.yml'))
project_attributes = [ file_attributes = [
project.creator, project.creator,
'.gitlab/dashboards/development_metrics.yml', '.gitlab/dashboards/development_metrics.yml',
content, content,
...@@ -41,11 +41,11 @@ namespace :gitlab do ...@@ -41,11 +41,11 @@ namespace :gitlab do
] ]
begin begin
project.repository.create_file(*project_attributes) project.repository.create_file(*file_attributes)
rescue Gitlab::Git::Index::IndexError => error rescue Gitlab::Git::Index::IndexError => error
raise error unless error.message == 'A file with this name already exists' raise error unless error.message == 'A file with this name already exists'
project.repository.update_file(*project_attributes) project.repository.update_file(*file_attributes)
end end
end end
end end
......
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