From 4c4e9369b1b94b12b3a1a7579609a04270b16cd2 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Tue, 7 Mar 2023 23:28:59 +0800 Subject: [PATCH] Fix `brew style` --- Library/Homebrew/extend/os/mac/extend/ENV/shared.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/extend/os/mac/extend/ENV/shared.rb b/Library/Homebrew/extend/os/mac/extend/ENV/shared.rb index 31299caf3e..a13761a8b3 100644 --- a/Library/Homebrew/extend/os/mac/extend/ENV/shared.rb +++ b/Library/Homebrew/extend/os/mac/extend/ENV/shared.rb @@ -28,7 +28,7 @@ module SharedEnvExtension def no_fixup_chains_support? return false if MacOS.version <= :catalina - # Note: `-version_details` is supported in Xcode 10.2 at the earliest. + # NOTE: `-version_details` is supported in Xcode 10.2 at the earliest. ld_version_details = JSON.parse(Utils.safe_popen_read("/usr/bin/ld", "-version_details")) ld_version = Version.parse(ld_version_details["version"])