<div dir="ltr"><div>Hi folks,</div><div>great to see such an active and helpful community! I don&#39;t know if my issue fits the requirements for this mailling list but I hope that you may help me.</div><div><br></div><div>I&#39;m building a small script to run &quot;xcodebuild&quot; with different settings. That&#39;s why I&#39;m using a loop to iterate my device settings.</div><div><br></div><div>Everything works fine as long as I have only one item in my list. If I have two, the first build runs successful but the second, third, etc will fail with the error &quot;Cannot determine the current working directory&quot;.</div><div><br></div><div>That is very confusing. Thanks for your help.</div><div><br></div><div>A short snippet of the bash script:</div><div><br></div><div>    for DEVICE in ${DEVICE_LIST[*]}</div><div>    do</div><div>        # DEVICE =&gt; &#39;iPhone 5&#39; or &#39;iPhone 6&#39;</div><div>        # SCHEME_NAME =&gt; &#39;myXcodeSchemeName&#39;</div><div>        xcodebuild test -scheme $SCHEME_NAME -destination &quot;platform=iOS Simulator,name=${IDENTIFIER},OS=9.1&quot; -resultBundlePath $OUTPUT_WORKING_DIR</div><div>    done</div><div><br></div><div>I already ask this question in stackoverflow and in the offical Apple developer forum. There were no answers until now. </div><div><br></div><div>Have a wonderful week,</div><div><br></div><div>Kind regards, Tobi</div></div>