in reply to How to get the failure message of the svn checkout command using system(command) in perl
Try
This will return both svn's streams (STDOUT and STDERR) to $response which can be examined afterwards - at least on Unixish systems.my $response = qx{svn checkout $svnPath $targetPath 2>&1};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to get the failure message of the svn checkout command using system(command) in perl
by priyaviswam (Sexton) on Aug 17, 2011 at 03:20 UTC |