Move backup custom hooks up a level

This commit is contained in:
Ahmad Hassan 2018-06-19 16:26:39 +02:00
parent 5308b51ef4
commit 9d7e73277e
1 changed files with 2 additions and 4 deletions

View File

@ -55,6 +55,8 @@ module Backup
backup_project_local(project)
end
end
backup_custom_hooks(project)
rescue => e
progress_warn(project, e, 'Failed to backup repo')
end
@ -63,8 +65,6 @@ module Backup
path_to_project_bundle = path_to_bundle(project)
Gitlab::GitalyClient::RepositoryService.new(project.repository)
.create_bundle(path_to_project_bundle)
backup_custom_hooks(project)
end
def backup_project_local(project)
@ -74,8 +74,6 @@ module Backup
path_to_project_bundle = path_to_bundle(project)
backup_custom_hooks(project)
cmd = %W(#{Gitlab.config.git.bin_path} --git-dir=#{path_to_project_repo} bundle create #{path_to_project_bundle} --all)
output, status = Gitlab::Popen.popen(cmd)
progress_warn(project, cmd.join(' '), output) unless status.zero?