From 5eac665a93f550e7d45a26d247c49c5ba6ef62cb Mon Sep 17 00:00:00 2001 From: Julian Raufelder Date: Mon, 27 Sep 2021 18:50:26 +0200 Subject: [PATCH] Fixes #1814 Add missing backslash while setting the pluginDir --- dist/linux/appimage/resources/AppDir/bin/cryptomator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/linux/appimage/resources/AppDir/bin/cryptomator.sh b/dist/linux/appimage/resources/AppDir/bin/cryptomator.sh index 06cd8f110..82c3e01ca 100755 --- a/dist/linux/appimage/resources/AppDir/bin/cryptomator.sh +++ b/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" \