how to remove running custom script
hi i have followed this link(http://www.alexwhittemore.com/?p=398) a long time ago to install app onto my iphone to test however i failed to run it. now i have original apple membership and my app is finished. there is some custom script that was described in the article and it is still trying to run and causing error. my question is how to remove the custom script from running. it is step 7 where i think the error is in accessing custom entitlements please help
mkdir /Developer/iphoneentitlements401
cd /Developer/iphoneenti开发者_如何学Ctlements401
curl -O http://www.alexwhittemore.com/iphone/gen_entitlements.txt
mv gen_entitlements.txt gen_entitlements.py
chmod 777 gen_entitlements.py
My ERROR is Cannot access entitlement data en_entitlements.py Permission denied
Put sudo
before the command.
sudo chmod 777 gen_entitlements.py
then input your root password
Hope this helps.
精彩评论