mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
15 lines
260 B
Ruby
15 lines
260 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
# A requirement on Linux.
|
|
class LinuxRequirement < Requirement
|
|
fatal true
|
|
|
|
satisfy(build_env: false) { OS.linux? }
|
|
|
|
sig { returns(String) }
|
|
def message
|
|
"Linux is required for this software."
|
|
end
|
|
end
|