Commit 4a54cc4c authored by Shinya Maeda's avatar Shinya Maeda

Change FileUtils.cp to FileUtils.copy

parent aa603812
......@@ -7,7 +7,7 @@ module Ci
break unless stream.file?
temp_file!(JobArtifactUploader.workhorse_upload_path) do |temp_path|
FileUtils.cp(stream.path, temp_path)
FileUtils.copy(stream.path, temp_path)
create_job_trace!(job, temp_path)
FileUtils.rm(stream.path)
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment