14 lines
225 B
Ruby
Raw Normal View History

2023-08-08 13:54:59 -07:00
# typed: strict
2022-09-28 21:57:13 -07:00
# frozen_string_literal: true
2024-09-13 12:22:52 -07:00
require "extend/os/linux/cli/parser" if OS.linux?
2024-12-01 10:44:53 -08:00
module Homebrew
module CLI
class Args
sig { returns(T::Boolean) }
def formula? = OS.linux?
end
end
end