From 6aca5a6c6dc2181c2db363f87b30a81727217a3b Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 30 Apr 2020 16:07:55 +0100 Subject: [PATCH] os/linux: add MacOS::CLT.version. This allows formulae with this to be read on Linux. --- Library/Homebrew/os/linux.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Library/Homebrew/os/linux.rb b/Library/Homebrew/os/linux.rb index 0c5d025859..b295005c3a 100644 --- a/Library/Homebrew/os/linux.rb +++ b/Library/Homebrew/os/linux.rb @@ -68,5 +68,13 @@ module OS Version::NULL end end + + module CLT + module_function + + def version + Version::NULL + end + end end end