diff options
author | Jason Colyer <jcolyer2007@gmail.com> | 2019-01-16 11:11:58 -0600 |
---|---|---|
committer | Jason Colyer <jcolyer2007@gmail.com> | 2019-01-17 10:07:29 -0600 |
commit | c74820db07f1f7348cd6fbe2a2d5307ba0e9eeba (patch) | |
tree | 150487388ef0bc94128ce5f6d98faa44a47646c1 /lib/backup | |
parent | f88b464bf3bfa13dea33489d8f57e5380dbc00cd (diff) | |
download | gitlab-ce-c74820db07f1f7348cd6fbe2a2d5307ba0e9eeba.tar.gz |
Modify file restore to rectify tar issue
Fixed typo in run_pipeline! function
-> Open3.pieline to Open3.pipeline
Diffstat (limited to 'lib/backup')
-rw-r--r-- | lib/backup/files.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/backup/files.rb b/lib/backup/files.rb index 550c932b2b5..2bac84846c5 100644 --- a/lib/backup/files.rb +++ b/lib/backup/files.rb @@ -73,7 +73,7 @@ module Backup def run_pipeline!(cmd_list, options = {}) err_r, err_w = IO.pipe options[:err] = err_w - status = Open3.pieline(*cmd_list, options) + status = Open3.pipeline(*cmd_list, options) err_w.close return if status.compact.all?(&:success?) |