diff options
author | Ingmar Vanhassel <ingmar@exherbo.org> | 2009-10-09 14:08:31 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-10-09 14:58:13 -0700 |
commit | b6aaaa4470ef578add390bb60292ed9b4cb4af3c (patch) | |
tree | 7ab221451535479c1c8fd086c94ed6dee442c801 | |
parent | 989c530e7f7f85db7fb5a340319cca88ca702b2a (diff) | |
download | git-b6aaaa4470ef578add390bb60292ed9b4cb4af3c.tar.gz git-b6aaaa4470ef578add390bb60292ed9b4cb4af3c.tar.xz |
import-tars: Add missing closing bracket
This fixes an obvious syntax error that snuck in commit 7e787953:
syntax error at /home/ingmar/bin//git-import-tars line 143, near "/^$/ { "
syntax error at /home/ingmar/bin//git-import-tars line 145, near "} else"
syntax error at /home/ingmar/bin//git-import-tars line 152, near "}"
Signed-off-by: Ingmar Vanhassel <ingmar@exherbo.org>
Acked-and-Tested-by: Peter Krefting <peter@softwolves.pp.se>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | contrib/fast-import/import-tars.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/import-tars.perl b/contrib/fast-import/import-tars.perl index a90971668..7001862bf 100755 --- a/contrib/fast-import/import-tars.perl +++ b/contrib/fast-import/import-tars.perl @@ -140,7 +140,7 @@ foreach my $tar_file (@ARGV) } elsif (!$header_done && /^Author:\s+([^<>]*)\s+<(.*)>\s*$/i) { $this_author_name = $1; $this_author_email = $2; - } elsif (!$header_done && /^$/ { # empty line ends header. + } elsif (!$header_done && /^$/) { # empty line ends header. $header_done = 1; } else { $commit_msg .= $_; |