소스 검색

Fixes #1814

Add missing backslash while setting the pluginDir
Julian Raufelder 3 년 전
부모
커밋
5eac665a93
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dist/linux/appimage/resources/AppDir/bin/cryptomator.sh

+ 1 - 1
dist/linux/appimage/resources/AppDir/bin/cryptomator.sh

@@ -28,7 +28,7 @@ export LD_PRELOAD=lib/app/libjffi.so
 	-cp "lib/app/*" \
 	-Dfile.encoding="utf-8" \
 	-Dcryptomator.logDir="~/.local/share/Cryptomator/logs" \
-	-Dcryptomator.pluginDir="~/.local/share/Cryptomator/plugins"
+	-Dcryptomator.pluginDir="~/.local/share/Cryptomator/plugins" \
 	-Dcryptomator.mountPointsDir="~/.local/share/Cryptomator/mnt" \
 	-Dcryptomator.settingsPath="~/.config/Cryptomator/settings.json:~/.Cryptomator/settings.json" \
 	-Dcryptomator.ipcSocketPath="~/.config/Cryptomator/ipc.socket" \