From 81ba02383859b99f07cfa259487bb0bfb5bba32a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Langa?= Date: Thu, 11 Dec 2025 18:11:50 +0100 Subject: [PATCH] Some versions of `leaks` want -exclude to not have a space --- script/leaks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/leaks.sh b/script/leaks.sh index e27717008..4ae748ccc 100755 --- a/script/leaks.sh +++ b/script/leaks.sh @@ -4,5 +4,5 @@ export MallocScribble=1 export MallocLogFile=/dev/null # Exclude known Apple Security framework leak in CryptKit::FEEKeyInfoProvider # which occurs during SSL/TLS handshakes and is not in libgit2's control -export CLAR_AT_EXIT="leaks -quiet -exclude SSLHandshake \$PPID" +export CLAR_AT_EXIT="leaks -quiet -exclude=SSLHandshake \$PPID" exec "$@"