Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Litvinov <lan@ac-sw.com>2005-11-09 10:02:58 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-09 10:34:29 +0300
commite09f5d7b07ada67f9e9c25ba7e58d76b8d5f4253 (patch)
tree8039bb39f09f295925824aff39d36daccf413f8f /git-cvsexportcommit.perl
parentf37d0cc3ff6ef565f961a0d3741ba016e1ceb31d (diff)
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 7074b0c21b..50b041c324 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];