Sha256: bbf1a4c9a1494a70d68be12059985b8a0eac533f98d7d6224fbd3dc8640d42a1

Contents?: true

Size: 735 Bytes

Versions: 5

Compression:

Stored size: 735 Bytes

Contents

require 'fileutils'

module FileUtils
  class << self
    alias_method :old_mv, :mv

    # If we encounter Errno::EACCES, which seems to happen occasionally on Windows,
    # try to copy and delete the file instead of moving it.
    #
    # @see https://github.com/berkshelf/berkshelf/issues/140
    # @see http://www.ruby-forum.com/topic/1044813
    #
    # It's also possible that we get Errno::ENOENT if we try to `mv` a relative
    # symlink on Linux
    # @see {FileUtils::mv}
    def mv(src, dest, options = {})
      old_mv(src, dest, options)
    rescue Errno::EACCES, Errno::ENOENT
      options.delete(:force) if options.has_key?(:force)
      FileUtils.cp_r(src, dest, options)
      FileUtils.rm_rf(src)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
berkshelf-5.5.0 lib/berkshelf/core_ext/file_utils.rb
berkshelf-5.4.0 lib/berkshelf/core_ext/file_utils.rb
berkshelf-5.3.0 lib/berkshelf/core_ext/file_utils.rb
berkshelf-5.2.0 lib/berkshelf/core_ext/file_utils.rb
berkshelf-5.1.0 lib/berkshelf/core_ext/file_utils.rb