소스 검색

Merge pull request #580 from swiesend/develop

Hide tmp file under Linux
Sebastian Stenzel 7 년 전
부모
커밋
6d1989bbfe
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      main/launcher/src/main/java/org/cryptomator/launcher/InterProcessCommunicator.java

+ 1 - 1
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));
 		}