Last active
October 13, 2021 15:35
-
-
Save viktorbenei/50ce2fa50d5a090a3341 to your computer and use it in GitHub Desktop.
List available shared Schemes in an Xcode Project/Workspace file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "=== List of available, **shared** Schemes ===" | |
set -x | |
# if you use a Workspace (.xcworkspace) file | |
xcodebuild -workspace $BITRISE_PROJECT_PATH -list | |
# or if you use a Project file (.xcodeproj) instead | |
xcodebuild -project $BITRISE_PROJECT_PATH -list | |
set +x | |
echo "=============================================" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment