Skip to content

Commit 53f1653

Browse files
fix: temp fix
1 parent 6deae6f commit 53f1653

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

build/steps-build-ios.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,24 @@ steps:
2727
installAppleWorkload: true
2828

2929
- task: Bash@3
30-
displayName: Select Xcode 26.1
30+
displayName: List available Xcode installations
3131
inputs:
3232
targetType: inline
3333
script: |
34-
sudo xcode-select -s "/Applications/Xcode_26.1.0.app/Contents/Developer"
34+
echo "Currently selected Developer path:"
35+
xcode-select -p || echo "No Xcode selected"
36+
37+
echo ""
38+
echo "Currently selected Xcode version:"
39+
xcodebuild -version || echo "xcodebuild not available"
40+
41+
echo ""
42+
echo "Available Xcode apps in /Applications:"
43+
ls -1 /Applications | grep -E '^Xcode' || echo "No Xcode apps found in /Applications"
44+
45+
echo ""
46+
echo "Potential Developer paths:"
47+
ls -d /Applications/Xcode*.app/Contents/Developer 2>/dev/null || echo "No Developer paths found"
3548
3649
#-if false
3750
- download: current

0 commit comments

Comments
 (0)