diff options
author | DJ Mountney <david@twkie.net> | 2018-05-11 14:07:56 -0700 |
---|---|---|
committer | Ahmad Hassan <ahmad.hassan612@gmail.com> | 2018-05-15 16:43:04 +0300 |
commit | d5bd61e82f425288397b53ba077eb59782fb12ca (patch) | |
tree | e2d1bb7b3ff2abe3ddef816a8bfde14824dd459e | |
parent | 4ea9458bbeb28d0a9ba70b45810bda9433467ddd (diff) | |
download | gitlab-ce-d5bd61e82f425288397b53ba077eb59782fb12ca.tar.gz |
Output project name before restoring each project repo
-rw-r--r-- | lib/backup/repository.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/backup/repository.rb b/lib/backup/repository.rb index 02897a11fac..0e12f70a066 100644 --- a/lib/backup/repository.rb +++ b/lib/backup/repository.rb @@ -96,6 +96,7 @@ module Backup prepare_directories gitlab_shell = Gitlab::Shell.new Project.find_each(batch_size: 1000) do |project| + progress.print " * #{project.name} ... " path_to_project_bundle = path_to_bundle(project) path_to_project_repo = path_to_repo(project) project.ensure_storage_path_exists |