24 lines
581 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# 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
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