Added notify on move and md5sum.

This commit is contained in:
Christian P. MOMON 2019-12-16 05:27:06 +01:00
parent 35c3a5e2cf
commit ac99b395f8

View file

@ -188,7 +188,7 @@ public class VideoCutGUI extends JFrame
String command = String.format("mv t.%s %s; md5sum %s > %s.md5", FilenameUtils.getExtension(VideoCutGUI.this.data.getEscapedFileName()),
VideoCutGUI.this.data.getEscapedFileName(), VideoCutGUI.this.data.getEscapedFileName(), VideoCutGUI.this.data.getEscapedFileName());
String log = CmdExec.run("bash", "-c", command);
VideoCutUtils.notify("Move and md5sum done.");
System.out.println("log=[" + log + "]");
}
break;