From: Rob H. <for...@us...> - 2003-01-31 06:49:34
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory sc8-pr-cvs1:/tmp/cvs-serv14865/lib/SandWeb Modified Files: Shell.pm Log Message: I was shifting one too many lines, we were missing some errors! :o ( like when you try to commit a file you didn't see why it failed if it hadn't been added ) Index: Shell.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Shell.pm,v retrieving revision 1.29 retrieving revision 1.30 diff -U2 -r1.29 -r1.30 --- Shell.pm 31 Jan 2003 06:46:11 -0000 1.29 +++ Shell.pm 31 Jan 2003 06:49:32 -0000 1.30 @@ -373,5 +373,5 @@ $raw_output =~ s/^M/\n/g; my @lined_output = split(/\n/, $raw_output); - shift @lined_output; + #shift @lined_output; shift @lined_output; if ( "@lined_output" =~ "^RSA key fingerprint is" ) { |