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_cc.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_cc.cc')
-rw-r--r-- | src/task_cc.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/task_cc.cc b/src/task_cc.cc index cd2b51c..b9edcf7 100644 --- a/src/task_cc.cc +++ b/src/task_cc.cc @@ -192,7 +192,13 @@ int TaskCC::runInner() } const auto& cfg = ctor::get_configuration(); - return execute(settings, compiler(), args, cfg.env); + auto res = execute(settings, compiler(), args, cfg.env); + if(res != 0) + { + std::filesystem::remove(targetFile()); + } + + return res; } int TaskCC::clean() |