This file contains 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
#!/usr/bin/env bash | |
set -u | |
[ -z "$2" ] && { | |
echo "Usage: $0 path/to/xcodeproj target1 target2 ..." | |
echo "The script will verify that all listed targets have the exact same set of files and resources." | |
echo "Tested with Xcode 9.1" | |
} | |
PBXFILE="$1/project.pbxproj" |