discourse/lib/freedom_patches/copy_file.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
348 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "fileutils"
# See: https://github.com/docker/for-linux/issues/1015
module FileUtils
class Entry_
def copy_file(dest)
File.open(path()) do |s|
File.open(dest, "wb", s.stat.mode) do |f|
IO.copy_stream(s, f)
f.chmod(f.lstat.mode)
end
end
end
end
end