Skip to content

Commit

Permalink
Fixed bug leading to dates input_dates.list missing the first charact…
Browse files Browse the repository at this point in the history
…er of the date and having a 'T' appended.
  • Loading branch information
David-Loibl committed May 5, 2019
1 parent e51a187 commit 1132f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reporting.sh
Expand Up @@ -11,7 +11,7 @@
cd $input_PATH
for inputfile in $( ls -1 ); do
echo $inputfile >> $output_PATH/Reports/input_files.list
echo ${inputfile:18:8} >> $output_PATH/Reports/input_dates.tmp
echo ${inputfile:17:8} >> $output_PATH/Reports/input_dates.tmp
done
input_file_count=$( ls -l | grep -v ^d | wc -l )
echo "Total input file count: $input_file_count" >> $output_PATH/Reports/input_files.list
Expand Down

0 comments on commit 1132f42

Please sign in to comment.