contrib/{extractDS,migrate-3-4}.px: Don't use XML::Simple and don't check for the...
authorFlorian Forster <octo@huhu.verplant.org>
Fri, 18 May 2007 17:34:43 +0000 (19:34 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Fri, 18 May 2007 17:34:43 +0000 (19:34 +0200)
contrib/extractDS.px
contrib/migrate-3-4.px

index 3bf4b9e..bdc4b3d 100755 (executable)
@@ -19,7 +19,6 @@ the L<XML::Simple> module.
 =cut
 
 use Getopt::Long ('GetOptions');
-use XML::Simple (qw(xml_in xml_out));
 use Data::Dumper ();
 
 our $InFile;
index 24a3c4e..613561b 100755 (executable)
@@ -128,11 +128,6 @@ GetOptions ("indir|i=s" => \$InDir,
        "hostname=s" => \$Hostname) or exit (1);
 
 die "No such directory: $InDir" if (!-d $InDir);
-if (!-e $OutDir)
-{
-       mkdir ($OutDir) or die ("mkdir ($OutDir): $!");
-}
-die "Not a directory: $OutDir" if (!-d $OutDir);
 
 our @Files = ();
 our %OutDirs = ();