From 79a6a8a7ac9e5e39721fc387c95d5b219f0e15e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Mon, 18 Mar 2024 19:53:06 +0000 Subject: [PATCH] github: fix the shell escaping? --- tests/check_daemon_starts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check_daemon_starts.sh b/tests/check_daemon_starts.sh index 64a497f..32a961d 100755 --- a/tests/check_daemon_starts.sh +++ b/tests/check_daemon_starts.sh @@ -8,7 +8,7 @@ emacs --daemon sleep 1 -if test $(emacsclient -e "(if I-completed-loading-dotinit 0 -1)") = "0" +if test "$(emacsclient -e '(if I-completed-loading-dotinit 0 -1)')" = "0" then echo "Failed --daemon start-up" exit 1