delete acsm file after use because it can't be reused--only causes confusion

This commit is contained in:
Benton Edmondson 2022-06-09 00:01:16 -04:00
parent 4948e52110
commit 4081827049

View file

@ -82,6 +82,7 @@ int main(int argc, char **argv) try {
std::filesystem::rename(out_file, ext_file);
}
std::filesystem::remove(acsm_file);
std::cout << file_type + " file generated at " + ext_file << std::endl;
return 0;