summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2853717)
raw | patch | inline | side by side (parent: 2853717)
author | Sven Verdoolaege <skimo@kotnet.org> | |
Mon, 4 Jul 2005 15:36:25 +0000 (17:36 +0200) | ||
committer | Sven Verdoolaege <skimo@kotnet.org> | |
Mon, 4 Jul 2005 15:36:25 +0000 (17:36 +0200) |
git-cvsimport-script | patch | blob | history |
diff --git a/git-cvsimport-script b/git-cvsimport-script
index 9773891b5ddbafbbaea4425f594b131679dfa5b7..7f93fb3cd7ed747c77236dc127dd94d7b7b8a7de 100755 (executable)
--- a/git-cvsimport-script
+++ b/git-cvsimport-script
# populate index
system('git-read-tree', $last_branch);
+ die "read-tree failed: $?\n" if $?;
# Get the last import timestamps
opendir(D,"$git_dir/refs/heads");
print "Parent ID $parent\n" if $opt_v;
}
- my $pr = IO::Pipe->new();
- my $pw = IO::Pipe->new();
+ my $pr = IO::Pipe->new() or die "Cannot open pipe: $!\n";
+ my $pw = IO::Pipe->new() or die "Cannot open pipe: $!\n";
$pid = fork();
die "Fork: $!\n" unless defined $pid;
unless($pid) {