diff options
author | Alexander Litvinov <lan@ac-sw.com> | 2005-11-09 13:02:58 +0600 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-08 23:34:29 -0800 |
commit | e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253 (patch) | |
tree | 8039bb39f09f295925824aff39d36daccf413f8f /git-cvsexportcommit.perl | |
parent | f37d0cc3ff6ef565f961a0d3741ba016e1ceb31d (diff) | |
download | git-e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253.tar.gz git-e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253.tar.xz |
Fix cvsexportcommit syntax error
There is a syntax error in cvsexport script:
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-cvsexportcommit.perl')
-rwxr-xr-x | git-cvsexportcommit.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl index 7074b0c21..50b041c32 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]; |