Non-email production files should be entered in spreadsheet output
This was simply an oversight when I wrote ProcessDocumentDirectory()
This commit is contained in:
parent
db9a80723f
commit
3f4a63dd3f
1 changed files with 6 additions and 0 deletions
|
@ -112,6 +112,12 @@ sub ProcessDocumentDirectory($$$) {
|
|||
or die "unable to copy($fullFilePath, catfile($numberedOutputDir, $fileName))";
|
||||
system('/usr/bin/unix2dos', '-q', $copiedFile) if (-T $copiedFile);
|
||||
die "unable to copy $fullFilePath to $copiedFile" unless -f $copiedFile;
|
||||
if ($GROUP_NAMES_BY_DIR{$GROUP} eq 'PRIVILEGED') {
|
||||
push(@CSV_OUTPUT_ROWS, [ $upiFull, "", "", $fileName, "N/A", "", "", "", "", "", $GROUP ]);
|
||||
} else {
|
||||
push(@CSV_OUTPUT_ROWS, [ $upiFull, $fileName, uc($rfp), $GROUP_NAMES_BY_DIR{$GROUP} ]);
|
||||
}
|
||||
|
||||
} else {
|
||||
die("\"$fullFilePath\" is a strange file type, not handled!");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue