File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -524,14 +524,10 @@ 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- # 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)
527+ # Navigate to the applesimutils directory (the project is in ./applesimutils/)
528+ cd applesimutils
533529 # Use the default Xcode path (don't override it)
534- xcodebuild -project AppleSimulatorUtils .xcodeproj -scheme AppleSimulatorUtils -configuration Release -derivedDataPath ./build clean build
530+ xcodebuild -project applesimutils .xcodeproj -scheme applesimutils -configuration Release -derivedDataPath ./build clean build
535531 sudo cp ./build/Build/Products/Release/applesimutils /usr/local/bin/
536532
537533 - name : Build library
You can’t perform that action at this time.
0 commit comments