On branch cleanup-function

Changes to be committed:
modified:   hash-files
	Add cleanup step for removing temp csv file
This commit is contained in:
Mike Holloway 2022-03-26 21:21:08 -04:00
parent b069d30fa9
commit cd281ef461

View File

@ -52,6 +52,7 @@ printf 'File: %s\nHash: %s\nMDLS Properties:\t%s\n' $1 $2 $3
}
cleanup () {
rm $temp_csv_file
write_log "Cleanup completed successfully."
}