mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
16 lines
343 B
Ruby
16 lines
343 B
Ruby
![]() |
# typed: strict
|
||
|
# frozen_string_literal: true
|
||
|
|
||
|
require "cask/artifact/symlinked"
|
||
|
|
||
|
module Cask
|
||
|
module Artifact
|
||
|
class ShellCompletion < Symlinked
|
||
|
sig { params(_: T.any(String, Pathname)).returns(Pathname) }
|
||
|
def resolve_target(_)
|
||
|
raise CaskInvalidError, "Shell completion without shell info"
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|