summaryrefslogtreecommitdiff
path: root/git-cvsexportcommit.perl
diff options
context:
space:
mode:
authorAlexander Litvinov <lan@ac-sw.com>2005-11-09 07:02:58 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-11-09 07:34:29 (GMT)
commite09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253 (patch)
tree8039bb39f09f295925824aff39d36daccf413f8f /git-cvsexportcommit.perl
parentf37d0cc3ff6ef565f961a0d3741ba016e1ceb31d (diff)
downloadgit-e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253.zip
git-e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253.tar.gz
git-e09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253.tar.bz2
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-xgit-cvsexportcommit.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl
index 7074b0c..50b041c 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];