Created
April 4, 2021 13:07
-
-
Save miff/cd537142635435a8ae88666a000bf3fd to your computer and use it in GitHub Desktop.
Build Script in XCode
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
| // In Targets -> Build Phases -> Add Run Script | |
| TAGS="TODO:|FIXME:" | |
| ERRORTAG="ERROR:" | |
| find "${SRCROOT}" \( -name "*.h" -or -name "*.m" -or -name "*.swift" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$|($ERRORTAG).*\$" | perl -p -e "s/($TAGS)/ warning: \$1/" | perl -p -e "s/($ERRORTAG)/ error: \$1/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment