]> git.deb.at Git - deb/packages.git/commitdiff
Create DBDIR if it doesn't exist
authorFrank Lichtenheld <frank@lichtenheld.de>
Tue, 14 Feb 2006 22:09:22 +0000 (22:09 +0000)
committerFrank Lichtenheld <frank@lichtenheld.de>
Tue, 14 Feb 2006 22:09:22 +0000 (22:09 +0000)
bin/parse-contents

index 550b6eeafeb5c01883a4dc7258c6ce3c0cab7ca9..541cba24beff985572e0b6f9a25198ebc0a81bd0 100755 (executable)
@@ -35,6 +35,7 @@ my $SORT_REVERSE_CONCURRENTLY = 1;
 
 use DB_File;
 use Storable;
+use File::Path;
 use Packages::Config qw( $TOPDIR $DBDIR @ARCHIVES @SUITES @ARCHITECTURES );
 &Packages::Config::init( './' );
 
@@ -43,6 +44,7 @@ my @suites = @SUITES;
 my @archs = @ARCHITECTURES;
 
 $DBDIR .= "/contents";
+-d $DBDIR || mkpath( $DBDIR );
 
 for my $archive (@archives) { for my $suite (@suites) {
 
@@ -64,9 +66,10 @@ for my $archive (@archives) { for my $suite (@suites) {
        $extra = "|sort" if $SORT_REVERSE_CONCURRENTLY;
 
        open REVERSED, "$extra>$DBDIR/reverse.tmp"
-               or die "Failed to open output reverse file";
+               or die "Failed to open output reverse file: $!";
 
-       open CONT, "zcat $filename|$what";
+       open CONT, "zcat $filename|$what"
+               or die $!;
        while (<CONT>) {last if /^FILE/mo;}
        while (<CONT>) {
                my $data = "";