File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -524,8 +524,12 @@ jobs:
524524 run : |
525525 # Install applesimutils from GitHub (brew formula doesn't exist)
526526 curl -L https://github.com/wix/AppleSimulatorUtils/releases/download/0.9.6/AppleSimulatorUtils-0.9.6.tar.gz | tar -xz
527- # The archive contains a directory, navigate to it
528- cd AppleSimulatorUtils-0.9.6
527+ # List contents to see what was extracted
528+ ls -la
529+ # Find the project file
530+ find . -name "*.xcodeproj" -type d
531+ # Navigate to the directory containing the project
532+ cd $(find . -name "*.xcodeproj" -type d | head -1 | xargs dirname)
529533 # Use the default Xcode path (don't override it)
530534 xcodebuild -project AppleSimulatorUtils.xcodeproj -scheme AppleSimulatorUtils -configuration Release -derivedDataPath ./build clean build
531535 sudo cp ./build/Build/Products/Release/applesimutils /usr/local/bin/
You can’t perform that action at this time.
0 commit comments