From c41973a8d6e7416fec5e4ec69db5d71e26692fb2 Mon Sep 17 00:00:00 2001 From: swiesend Date: Tue, 12 Sep 2017 11:31:31 +0200 Subject: [PATCH] Hide tmp file under Linux --- .../java/org/cryptomator/launcher/InterProcessCommunicator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java b/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java index 5c330725a..9dd282bab 100644 --- a/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java +++ b/main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java @@ -80,7 +80,7 @@ abstract class InterProcessCommunicator implements InterProcessCommunicationProt final String settingsPathProperty = System.getProperty("cryptomator.ipcPortPath"); if (settingsPathProperty == null) { LOG.warn("System property cryptomator.ipcPortPath not set."); - return Paths.get("ipcPort.tmp"); + return Paths.get(".ipcPort.tmp"); } else { return Paths.get(replaceHomeDir(settingsPathProperty)); }