diff --git a/Library/Homebrew/os/linux.rb b/Library/Homebrew/os/linux.rb index 1e3cb24fa8..c8804764a2 100644 --- a/Library/Homebrew/os/linux.rb +++ b/Library/Homebrew/os/linux.rb @@ -68,6 +68,10 @@ module OS def version Version::NULL end + + def installed? + false + end end module CLT @@ -76,6 +80,10 @@ module OS def version Version::NULL end + + def installed? + false + end end end # rubocop:enable Style/Documentation