From 99393b28c5aa19c789711548018f5d221cd87edb Mon Sep 17 00:00:00 2001 From: Scott Fryer <60462088+steelhead31@users.noreply.github.com> Date: Wed, 21 Aug 2024 10:06:50 +0100 Subject: [PATCH] Add Debug For Xcode Find --- tooling/reproducible/macos_repro_build_compare.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tooling/reproducible/macos_repro_build_compare.sh b/tooling/reproducible/macos_repro_build_compare.sh index edf0f7562..0eddc9752 100644 --- a/tooling/reproducible/macos_repro_build_compare.sh +++ b/tooling/reproducible/macos_repro_build_compare.sh @@ -311,6 +311,11 @@ Check_Compiler_Versions() { done < <(find "$MAC_COMPILER_BASE" -maxdepth 1 -type d -name "$MAC_COMPILER_APP_PREFIX*") XCODE_COUNT=${#XCODE_PATHS[@]} + ## Debug + echo "Debug Xcode Find" + find "$MAC_COMPILER_BASE" -maxdepth 1 -type d -name "$MAC_COMPILER_APP_PREFIX*" + echo "End Debug" + if [ "$XCODE_COUNT" -eq 0 ] ; then echo "Error - An Xcode Installaton Could Not Be Found In The Default Path : $MAC_COMPILER_BASE / $MAC_COMPILER_APP_PREFIX " exit 1