14 lines
225 B
Ruby
14 lines
225 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "extend/os/linux/cli/parser" if OS.linux?
|
|
|
|
module Homebrew
|
|
module CLI
|
|
class Args
|
|
sig { returns(T::Boolean) }
|
|
def formula? = OS.linux?
|
|
end
|
|
end
|
|
end
|