Skip to content

Commit e4431f2

Browse files
author
Martin Plieske
committed
changed executeCommandLinux()
1 parent 5eadd14 commit e4431f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/de/doubleslash/keeptime/common/FileOpenHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private static void executeCommandWindows(final Runtime rt, final File file) {
5858

5959
private static void executeCommandLinux(final Runtime rt, final String fileString) {
6060
try {
61-
final String command = "'" + fileString + "'";
61+
final String command = fileString;
6262
LOG.debug("executing command: gedit {}", command);
6363

6464
rt.exec(new String[] {

0 commit comments

Comments
 (0)