From 9cc73ea5685dc0640da5fafba9e57af7a99c55a3 Mon Sep 17 00:00:00 2001 From: Rod Chapman Date: Wed, 22 Jan 2025 11:15:45 +0000 Subject: [PATCH] Correct setting of macOS taskpolicy variable to the underlying exec-wrapper command. Signed-off-by: Rod Chapman --- scripts/tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tests b/scripts/tests index 9da4c8a3c..bf533732a 100755 --- a/scripts/tests +++ b/scripts/tests @@ -321,7 +321,7 @@ class Tests: if self.args.exec_wrapper is not None and self.args.exec_wrapper != "": res += self.args.exec_wrapper.split(" ") if self.args.mac_taskpolicy is not None: - res += ["taskpolicy", "-c", f"{mac_taskpolicy}"] + res += ["taskpolicy", "-c", f"{self.args.mac_taskpolicy}"] return res