Last active
May 15, 2018 11:11
-
-
Save bright23/8e0595ae2897369ad3c959235f0ea2d3 to your computer and use it in GitHub Desktop.
provisioning clean
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
# provisioning 場所 | |
cd ~/Library/MobileDevice/Provisioning\ Profiles | |
# project_nameを含むprovisioning | |
find ./ -type f -print | xargs grep 'project_name' | |
# project_nameを含むprovisioanig削除 | |
MobileDevice/Provisioningディレクトリで | |
rm -f $(grep -l project_name ./*) | |
project_nameを含むprovisioningが消えてることを確認 | |
find ./ -type f -print | xargs grep 'project_name' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment