Command line Update of Provisioning Profiles

后端 未结 5 799
旧巷少年郎
旧巷少年郎 2021-01-29 23:09

I couldn\'t find anything on this (maybe I\'m just using the wrong search terms..):
We\'re trying to build a sensible continuous integration setting for our apps. To have a

5条回答
  •  囚心锁ツ
    2021-01-29 23:38

    Here's my bash script for it, where the first argument to the script ($1) is the location of the new profiles.

    rm -Rf ~/Library/MobileDevice/Provisioning\ Profiles/*
    cp "$1"/*.* ~/Library/MobileDevice/Provisioning\ Profiles/
    

    Basically, anything in that ~/Library/MobileDevice/Provisioning Profiles/ folder can be used to build with (and will show up in Xcode).

    If you're looking to stand up a CI system, I recently gave a talk on using Hudson for it, and put up some slides and notes over here. My email is on my site if you have any questions about it.

提交回复
热议问题