Merge branch 'master' of git.esilibrary.com:migration-tools to remove unlogged statements
authorRogan Hamby <rhamby@esilibrary.com>
Tue, 14 May 2019 11:58:08 +0000 (07:58 -0400)
committerRogan Hamby <rhamby@esilibrary.com>
Tue, 14 May 2019 11:58:08 +0000 (07:58 -0400)
mig-bin/mig-stagebibs

index fb76b0c..0c9bdfd 100755 (executable)
@@ -95,7 +95,7 @@ while(my $line = <$xml>) {
        if ($line =~ /^<\/?collection/) { next; }
        chomp $line;
        $record = $record . $line;
-       if ($line =~ /^<\/record/) {
+       if ($line =~ /<\/record>$/) {
                stage_record($dbh,$record,$source); 
                $record = '';
                $i++;