From 6c0cfbb782d5369754df5d5c04dc293dbaee68e9 Mon Sep 17 00:00:00 2001
From: Morgan Pretty <morgan.t.pretty@gmail.com>
Date: Fri, 5 Apr 2024 15:44:29 +1100
Subject: [PATCH] Debugging the parsing of the plist

---
 Scripts/clean-up-old-test-simulators.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Scripts/clean-up-old-test-simulators.sh b/Scripts/clean-up-old-test-simulators.sh
index 845d1bad0..2edeb8673 100755
--- a/Scripts/clean-up-old-test-simulators.sh
+++ b/Scripts/clean-up-old-test-simulators.sh
@@ -26,7 +26,8 @@ xcrun simctl delete unavailable
 
 # Convert the plist to JSON and get the UUIDs
 uuids=$(plutil -convert json -o - "$plist" | jq -r '.. | select(type=="string")')
-
+echo "RAWR\n\n$(plutil -convert json -o - "$plist")"
+echo "RAWR2\n\n$uuids\n\n"
 # Create empty arrays to store the outputs
 uuids_to_leave=()
 uuids_to_remove=()