Make the backup Rake task the same as in EE
EE uses single quotes for the changed line, whereas CE was using double quotes. This commit ensures both repositories use the same kind of quotes.
This commit is contained in:
parent
9e08b71a04
commit
bb873b1e3b
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ namespace :gitlab do
|
|||
Rake::Task['gitlab:backup:uploads:restore'].invoke unless backup.skipped?('uploads')
|
||||
Rake::Task['gitlab:backup:builds:restore'].invoke unless backup.skipped?('builds')
|
||||
Rake::Task['gitlab:backup:artifacts:restore'].invoke unless backup.skipped?('artifacts')
|
||||
Rake::Task["gitlab:backup:pages:restore"].invoke unless backup.skipped?('pages')
|
||||
Rake::Task['gitlab:backup:pages:restore'].invoke unless backup.skipped?('pages')
|
||||
Rake::Task['gitlab:backup:lfs:restore'].invoke unless backup.skipped?('lfs')
|
||||
Rake::Task['gitlab:backup:registry:restore'].invoke unless backup.skipped?('registry')
|
||||
Rake::Task['gitlab:shell:setup'].invoke
|
||||
|
|
Loading…
Reference in a new issue