summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 33333be..602f06b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -292,8 +292,8 @@ int main(int argc, char **argv)
char run_cmd[2048];
sprintf(run_cmd, "./%s", outfile);
ret = system(run_cmd);
- // Clean up executable if temp run?
- // ZPrep behavior: keeps it.
+ // Clean up executable
+ remove(outfile);
return ret;
}