From: Rob H. <for...@us...> - 2001-12-10 18:34:05
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv23829/lib/SandWeb/Repository Modified Files: CVS.pm Log Message: formatting fixes Index: CVS.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/CVS.pm,v retrieving revision 1.14 retrieving revision 1.15 diff -U2 -r1.14 -r1.15 --- CVS.pm 2001/12/04 17:57:24 1.14 +++ CVS.pm 2001/12/10 18:34:00 1.15 @@ -148,8 +148,11 @@ my $output = `cd $sandbox && cvs -d $root @param \"$file\" 2>&1`; + my $errorlevel = $?; - my %return = ( output => $output, - errorlevel => $errorlevel ); + my %return = ( + output => $output, + errorlevel => $errorlevel, + ); return %return; |