diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-24 08:37:42 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-01-24 08:37:42 +0100 |
commit | f4221bc281e34e3171ba8bc4b1e49d1f53aaf118 (patch) | |
tree | 56a568a2ce89f454fdae6a201cf938cde452bc9b /src/task_ar.cc | |
parent | d286c9b4b5c1acb9f6b9f9b382c37e7ed6757cd1 (diff) |
Delete target file if generating tool fails, ensuring no half written/corrupted files are left on disk.
Diffstat (limited to 'src/task_ar.cc')
-rw-r--r-- | src/task_ar.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/task_ar.cc b/src/task_ar.cc index 512815f..3b45cc2 100644 --- a/src/task_ar.cc +++ b/src/task_ar.cc @@ -121,7 +121,13 @@ int TaskAR::runInner() break; } - return execute(settings, tool, args, c.env); + auto res = execute(settings, tool, args, c.env); + if(res != 0) + { + std::filesystem::remove(targetFile()); + } + + return res; } int TaskAR::clean() |