Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/backup/files.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/backup/files.rb b/lib/backup/files.rb
index d0a6e8f27be..1b08e3324d7 100644
--- a/lib/backup/files.rb
+++ b/lib/backup/files.rb
@@ -15,6 +15,7 @@ module Backup
# Copy files from public/files to backup/files
def dump
FileUtils.mkdir_p(Gitlab.config.backup.path)
+ FileUtils.rm_f(backup_tarball)
run_pipeline!([%W(tar -C #{files_parent_dir} -cf - #{name}), %W(gzip -c -1)], out: [backup_tarball, 'w', 0600])
end