From eb9589c3df2da0621da6a0b38a870b2509f1d418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aykut=20=C3=87evik?= Date: Mon, 27 Nov 2017 20:53:35 +0100 Subject: [PATCH] Fixes for case-sensitive volumes Installation crashed with following stdout: ``` installing kext installed and loaded chown: LuluDaemon: No such file or directory mv: rename LuluDaemon to /Library/Objective-See/LuLu/LuluDaemon: No such file or directory launch daemon installed and loaded install complete ``` --- configure/configure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure/configure.sh b/configure/configure.sh index 13a8f9c..0eb6f9d 100755 --- a/configure/configure.sh +++ b/configure/configure.sh @@ -50,10 +50,10 @@ then echo "kext installed and loaded" #install & load launch daemon - chown -R root:wheel LuluDaemon + chown -R root:wheel LuLuDaemon chown -R root:wheel com.objective-see.lulu.plist - mv LuluDaemon /Library/Objective-See/LuLu/ + mv LuLuDaemon /Library/Objective-See/LuLu/ mv com.objective-see.lulu.plist /Library/LaunchDaemons/ launchctl load /Library/LaunchDaemons/com.objective-see.lulu.plist