I've got some programming background but don't quite know my way around automator. I am a iOS application developer, and I test my apps on my jailbroken iPhone, but they need to be code signed first, which consists of running a command in terminal to the location of the .app file, which is kind of a pain in the butt, but this is my routine now...
1. Copy and paste this script into terminal:
2. Replace the '/path/appname.app/appname' with the path and name of app
3. Execute
How would I automate this, by say, dragging and dropping the file or (preferably) the folder and have automator copy the location and append that to the 'codesign -fs "Cydia Developer"' code. It seems like it should be pretty easy, but I don't know how to do it!
Any help would be MUCH appreciated, its a pain in the butt to do EVERY time I want to try an app on my phone... thanks!
1. Copy and paste this script into terminal:
Code:
codesign -fs "Cydia Developer" /path/appname.app/appname
2. Replace the '/path/appname.app/appname' with the path and name of app
Code:
codesign -fs "Cydia Developer" '/Users/jessew/Desktop/Switch Views.app/Switch Views'
3. Execute
How would I automate this, by say, dragging and dropping the file or (preferably) the folder and have automator copy the location and append that to the 'codesign -fs "Cydia Developer"' code. It seems like it should be pretty easy, but I don't know how to do it!
Any help would be MUCH appreciated, its a pain in the butt to do EVERY time I want to try an app on my phone... thanks!