Skip to content

Commit

Permalink
make svn revert work recursively
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Dec 13, 2011
1 parent 5da5336 commit 21b3e7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cpp/session/modules/SessionSVN.cpp
Expand Up @@ -564,7 +564,9 @@ Error svnRevert(const json::JsonRpcRequest& request,
&resolveAliasedJsonPath);

core::system::ProcessResult result;
error = runSvn(ShellArgs() << "revert" << globalArgs() << "-q" << "--" << paths,
error = runSvn(ShellArgs() << "revert" << globalArgs() << "-q" <<
"--depth" << "infinity" <<
"--" << paths,
&result, true);
if (error)
return error;
Expand Down

0 comments on commit 21b3e7a

Please sign in to comment.