The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

How to check appstore provision in Xcode runscript

I'm increasing the build number using xcode runscript the build number is increasing only while achieving code for checking release or debug if [ $CONFIGURATION == Release ]; And my need is to ...
0
votes
0answers
8 views

django-extension runscript sync error

I use the runscript command like this: manage.py runscript -v 2 entryTest It runs very well.But,when I started another process like this: runscript 0.0.0.0:8888 When I add new datas in web ...
0
votes
1answer
27 views

XCode: Run script after application unitest to copy files from device

I run an application test from XCode on my device. The test creates some files on the device. After the tests has finihsed i would like to copy these file from the device to my machine. Does anyone ...
0
votes
1answer
102 views

Executing random python scripts Zope/Plone using condition rules

I am currently working on adding some features to a plone website and I would like to be able to run a python script using content rules. For example, I've written an article and I want to publish it ...
1
vote
1answer
75 views

What types of languages are supported in Xcode build phases run script?

I am new to scripting but I need to learn it for a script I need to run in the build phases of an Xcode project. What types of scripts can I write in there? What types of languages are supported? Is ...
0
votes
1answer
101 views

Moving data between SQLite and PostgreSQL using Django extensions “dumpscript”

Getting "No Module found" when running runscript as follows: I am trying to use the python manage.py dumpscript in Django extensions to move data from SQLite to postgres. (Having errors using ...
0
votes
0answers
83 views

How to use STA mode in PowerShell 1.0?

I'm very awkward in PowerShell and I use it only at home for my own simple tasks under my Windows XP where no available upgrade to PS2. Next test show that my PowerShell 1.0 use MTA mode by default. ...
1
vote
1answer
277 views

“command not found” with custom run script and xcodebuild

I am running a customized script which includes a command (ios-sim) which should be known to bash (the binary lies in /usr/local/bin, $PATH knows). However, when invoked by xcodebuild the console logs ...
0
votes
5answers
435 views

Run jquery function again after ajax call

Is there any way to run a script again after an ajax call? I have a photoswipe (lightbox) jquery plug-in I call like this: jQuery(document).ready(function($){ if( $('.img-frame a').length > ...
1
vote
1answer
230 views

Automatic clicking on Link build with Javascript by using watin

I am trying to be able to automate the process of clicking on links built in javascript using watin. In the source code of web page, the links look like href="#", so i think these links works with ...
0
votes
1answer
108 views

Share same assets between multiple targets

I'm seeking advice on how to share assets between 4 targets in my project: A.app, B.app, C.app, D.app Approach 1 - Best case. I have attempted this unsuccessfully Create an Assets.bundle target. ...
0
votes
1answer
990 views

create .sql script with Visual Studio 2012 at c# and how run it?

I have a little problem about that. When i create a script with VS2012 ,it looks like that (DataBase Name : LSProjeDB and have a table as Musteri) (created like that : go table > update>genarete ...
0
votes
0answers
81 views

H2 SQL Recovery tool creates many copies of rows

I've had a problem with my H2 database and had to use the Recovery tools, the problem is that when I use the RunScript the database generated by that have many duplicated rows, including the index! In ...
1
vote
0answers
617 views

minicom script exiting immediately

I have written the following minicom script: sleep 20 send "\n" expect { "#" break } send "\n" send "uname -a" expect { "Linux:" break } The command used to run the script is: sudo minicom ...
0
votes
1answer
49 views

Not able to print value using echo

I am using Run Script in Xcode, I am facing some problem I am declaring variable like below URL1 = "/Users/UserName/Desktop/Folder/13072012/libRestKit.a" And below i am printing it echo "Test ...
2
votes
1answer
218 views

Xcode - How to move app out of sandbox with run script?

Basically from what I understand is that if my app wants to use serial communication via the dock connector (pins 12 / 13) the app has to live outside the app sandbox folder. Now I don't want to have ...
0
votes
1answer
493 views

How to write a Run Script in Xcode

In my project i have Frameworks different for iPhone Simulator and iPhone Device for example like in Rest kit "libRestKit_simulator.a" for simulator and "libRestKit.a" for device, My requirement is ...
1
vote
1answer
412 views

XCode 'Run Script' step to create directory and copy file is failing

I have the following custom script step during my build: mkdir -p "${CONTENTS_FOLDER_PATH}/Frameworks" cp "${SRCROOT}/testing.1.dylib" "${CONTENTS_FOLDER_PATH}/Frameworks" The script runs ...
2
votes
2answers
1k views

Set global environment variables inside Xcode build phase run script

I'm using Jenkins to do continuous integration builds. I have quite a few jobs that have much of the same configuration code. I'm in the midst of pulling this all out into a common script file that ...
0
votes
1answer
599 views

How to get Xcode to refresh folder references on device?

I created a folder reference by doing the following: Created a folder on disk. Added whatever files are meant to be in it. In Xcode ---> Add files to project ---> Clicked on folder ---> ...
0
votes
1answer
127 views

How to specify a folderpath containing spaces in an environment variable that will be passed to cp in the run script build phase in Xcode?

I have the following line in a script I am running in the "Run Script" build phase in my Xcode project: cp -v "/Users/myusername/Desktop/foo2Texture5.png" $BACKGROUND_TEXTURES_FOLDER_PATH ...
0
votes
1answer
656 views

What permissions are required for “Run Script” during a build phase?

In the "Run Script" build phase of my project, everything works if I type in the script into the text box for "run script" in build phases. But to make editing / diffing etc easier, I thought I would ...
1
vote
1answer
331 views

How to access Xcode user define build settings from run script in build phase?

I run a script during a build phase. Xcode lets you define user-defined build settings. I thought I would use these settings to store values or paths that I want to pass to the script. Is this ...
0
votes
1answer
304 views

grails oauth from groovy script

I'm trying to run a groovy script that calls the Linkedin API. The question is, how do I authenticate using the grails oauth plugin from within the groovy script ? This is my config : oauth { ...
3
votes
2answers
205 views

Global Xcode run scripts

In order to automatically update build dates and build numbers, I set up a run script for the build phase in my scheme: # Auto Increment Version Script buildPlist=${PROJECT_DIR}/${INFOPLIST_FILE} ...
0
votes
1answer
202 views

What is the role of run script in Build Phases in Xcode 4

Can any one explain actual usage of run script in xcode 4. 1) what is the usage of run script. 2) which type of scripts we can add in run script. 3) when will execute the run script. 4) explain ...
0
votes
2answers
8k views

How to execute large MySql data-insert script file using command line in Windows 7?

I'm new to MySQL so please guide me through how to do this via command line; I've tried but I get NO logging in the console output and the character set is not utf-8 Please help.