Skip to content

Commit 6311a32

Browse files
committed
U temp directory not removed fixed
1 parent f83f298 commit 6311a32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>fvarrui.pptx2video</groupId>
77
<artifactId>PowerPointToVideo</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.3.1</version>
99

1010
<name>PowerPointToVideo</name>
1111
<description>PowerPoint to MP4 converter with synthesized interlocutor voice</description>

src/main/java/fvarrui/pptx2video/ui/ConvertionTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public ConvertionTask(File input, File output) {
8484
cleanStep = addStep("Removing temporary directory",
8585
data -> {
8686
File tempDir = (File) data.get("tempDir");
87-
// FileUtils.deleteDirectory(tempDir);
87+
FileUtils.deleteDirectory(tempDir);
8888
System.out.println("Temporary dir removed: " + tempDir);
8989
}
9090
);

0 commit comments

Comments
 (0)