I'm trying to create a script that will execute a svn update on the root but I don't understand the results I'm getting. Here is the code executed by my script:
$update = "svn --username user --password pwd update svn://URL";
$res = exec($update);
echo $res;
However, the echo of the $res gives me " Skipped 'svn://URL' ".
I've used a similar method to do a svn checkout and it worked fine. Is there something I'm missing to be able to do the update?