25 lines
651 B
Ruby
Raw Normal View History

# typed: strict
# frozen_string_literal: true
require_relative "directory"
module UnpackStrategy
2020-08-09 06:09:05 +02:00
# Strategy for unpacking Bazaar archives.
class Bazaar < Directory
sig { override.params(path: Pathname).returns(T::Boolean) }
def self.can_extract?(path)
!!(super && (path/".bzr").directory?)
end
private
sig { override.params(unpack_dir: Pathname, basename: Pathname, verbose: T::Boolean).void }
def extract_to_dir(unpack_dir, basename:, verbose:)
super
# The export command doesn't work on checkouts (see https://bugs.launchpad.net/bzr/+bug/897511).
2020-10-20 12:03:48 +02:00
(unpack_dir/".bzr").rmtree
end
end
end