Hide tmp file under Linux

This commit is contained in:
swiesend
2017-09-12 11:31:31 +02:00
parent f84bb4710f
commit c41973a8d6

View File

@@ -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));
}