24 lines
519 B
Ruby
24 lines
519 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
module OS
|
|
module Linux
|
|
module Cask
|
|
module Artifact
|
|
module AbstractUninstall
|
|
extend T::Helpers
|
|
|
|
requires_ancestor { ::Cask::Artifact::AbstractUninstall }
|
|
|
|
sig { params(target: Pathname).returns(T::Boolean) }
|
|
def undeletable?(target)
|
|
!target.parent.writable?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Cask::Artifact::AbstractUninstall.prepend(OS::Linux::Cask::Artifact::AbstractUninstall)
|