Merge branch 'master' of git.esilibrary.com:migration-tools
authorRogan Hamby <rhamby@esilibrary.com>
Tue, 10 Sep 2019 15:55:35 +0000 (11:55 -0400)
committerRogan Hamby <rhamby@esilibrary.com>
Tue, 10 Sep 2019 15:55:35 +0000 (11:55 -0400)
mig-bin/mig-clean
mig-bin/mig-convert
mig-bin/mig-reporter

index 1ad21c0..b9cb013 100755 (executable)
@@ -105,7 +105,7 @@ sub call_clean_csv {
         }
 
         print join(' ',@args) . "\n";
-        system('/home/rhamby/git/migration-tools/text/clean_csv', @args, $utf8_file);
+        system('clean_csv', @args, $utf8_file);
 
         my $dbh = Mig::db_connect();
         my $clean_file = $dbh->quote($utf8_file . '.clean');
index a0d5a12..6fe2172 100755 (executable)
@@ -110,7 +110,7 @@ sub call_convert_csv {
         push @args, $stage_sql_filename;
 
         print "args: " . join(',',@args) . "\n";
-        system('/home/rhamby/git/migration-tools/text/csv2sql', @args, $clean_file);
+        system('csv2sql', @args, $clean_file);
 
         my $dbh = Mig::db_connect();
         if (! -e $stage_sql_filename) {
index 718063b..ee91f43 100755 (executable)
@@ -65,7 +65,7 @@ pod2usage(-verbose => 1) if ! $ARGV[1];
 
 my $analyst;
 my $report_title;
-my $reports_xml;
+my $reports_xml = 'evergreen_staged_report.xml';
 my $tags;
 my $added_page_title;
 my $added_page_file;