summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2015-09-22 13:33:59 +0200
committerJacob Vosmaer <contact@jacobvosmaer.nl>2015-09-22 13:33:59 +0200
commit96fbfa29900277edca71ef38eaa645a00f8c2f1b (patch)
tree2be68c76ffabf5cc67aff00a9cca04cb40b4bffe
parentf5ef24b13947cb240f39ddfb8736f05340059533 (diff)
downloadgitlab-ci-96fbfa29900277edca71ef38eaa645a00f8c2f1b.tar.gz
Remove unnecessary tar options from restore
-rw-r--r--lib/backup/builds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/backup/builds.rb b/lib/backup/builds.rb
index 9746d24..f2c1be8 100644
--- a/lib/backup/builds.rb
+++ b/lib/backup/builds.rb
@@ -30,7 +30,7 @@ module Backup
# default behavior of tar is to talk to a tape device instead of
# stdin/stdout.
system(
- *%W(tar -C #{app_builds_dir} -xzf - -- .),
+ *%W(tar -C #{app_builds_dir} -xzf -),
in: backup_builds_tarball
)
end