From: Alexander Litvinov Date: Wed, 9 Nov 2005 07:02:58 +0000 (+0600) Subject: Fix cvsexportcommit syntax error X-Git-Tag: v0.99.9g^2~8 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253;p=git.git Fix cvsexportcommit syntax error There is a syntax error in cvsexport script: Signed-off-by: Junio C Hamano --- diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl index 7074b0c2..50b041c3 100755 --- a/git-cvsexportcommit.perl +++ b/git-cvsexportcommit.perl @@ -64,7 +64,7 @@ if ($parent) { last; }; # found it die "Did not find $parent in the parents for this commit!"; -s } + } } else { # we don't have a parent from the cmdline... if (@parents == 1) { # it's safe to get it from the commit $parent = $parents[0];