From 2495bbecf7ff4bf4f8aaa1b4ac41f3b7ee864dd9 Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Mon, 4 May 2020 22:53:34 +0200 Subject: [PATCH] macOS: pass installation if we could not start the background services --- MacOSX/scripts/postinstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MacOSX/scripts/postinstall b/MacOSX/scripts/postinstall index 52337d4d..45f21436 100755 --- a/MacOSX/scripts/postinstall +++ b/MacOSX/scripts/postinstall @@ -36,7 +36,7 @@ for f in \ do if [ -e "$f" ] then - /bin/launchctl asuser $(id -u "${USER}") /bin/launchctl load "$f" + /bin/launchctl asuser $(id -u "${USER}") /bin/launchctl load "$f" || true fi done