]> asedeno.scripts.mit.edu Git - git.git/blobdiff - git-svnimport.perl
Make trailing LF following fast-import `data` commands optional
[git.git] / git-svnimport.perl
index b73d6494d80fe5ee19e1d95971e2e4e64e980dea..8c17fb5ae240c0335ce211b19d516f54e145065f 100755 (executable)
@@ -49,7 +49,7 @@ getopts("A:b:C:dDFhiI:l:mM:o:rs:t:T:SP:R:uv") or usage();
 usage if $opt_h;
 
 my $tag_name = $opt_t || "tags";
-my $trunk_name = $opt_T || "trunk";
+my $trunk_name = defined $opt_T ? $opt_T : "trunk";
 my $branch_name = $opt_b || "branches";
 my $project_name = $opt_P || "";
 $project_name = "/" . $project_name if ($project_name);