Sha256: 6cb041f0c6bc9971bd1ce93a014f51206baeaf6b456d53c58d0cf60759ca7038

Contents?: true

Size: 731 Bytes

Versions: 5

Compression:

Stored size: 731 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.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-7.0.9 lib/berkshelf/core_ext/file_utils.rb
berkshelf-7.0.8 lib/berkshelf/core_ext/file_utils.rb
berkshelf-7.0.7 lib/berkshelf/core_ext/file_utils.rb
berkshelf-7.0.6 lib/berkshelf/core_ext/file_utils.rb
berkshelf-7.0.5 lib/berkshelf/core_ext/file_utils.rb