Skip to content

Commit

Permalink
Merge pull request #1592 from dcrewi/feature/delete-temp-file
Browse files Browse the repository at this point in the history
delete temporary export file when finished
  • Loading branch information
alexbakker authored Jan 24, 2025
2 parents 9ab949a + d98e23a commit ad2dc80
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ protected Exception doInBackground(ExportTask.Params... args) {
return null;
} catch (IOException e) {
return e;
} finally {
boolean ignored = params.getFile().delete();
}
}

Expand Down

0 comments on commit ad2dc80

Please sign in to comment.