From 967e8db9ba3a65ae2a979ac30e521f0a8c1466ae Mon Sep 17 00:00:00 2001 From: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> Date: Thu, 17 Oct 2024 21:36:18 -0400 Subject: [PATCH] Only install periphery from brew if macOS version is >= 13. Resolve #580 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> --- Brewfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Brewfile b/Brewfile index 8d4cb99..2638c4e 100644 --- a/Brewfile +++ b/Brewfile @@ -9,4 +9,6 @@ brew "trash" # brew "swiftlint" tap "peripheryapp/periphery" -cask "periphery" +if OS.mac? && MacOS.version >= :ventura + cask "periphery" +end