adding hash file cleanup

This commit is contained in:
Sergio Martin 2024-01-17 18:25:55 +01:00
parent f6d119b549
commit 0accf8a5cd
1 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,9 @@ quickerNESHash=`cat ${quickerNESHashFile}`
# Comparing hashes # Comparing hashes
quickNESHash=`cat ${quickNESHashFile}` quickNESHash=`cat ${quickNESHashFile}`
# Removing temporary files
rm -f ${quickerNESHashFile} ${quickNESHashFile}
# Compare hashes # Compare hashes
if [ "${quickerNESHash}" = "${quickNESHash}" ]; then if [ "${quickerNESHash}" = "${quickNESHash}" ]; then
echo "[] Test Passed" echo "[] Test Passed"