From c6ac8b5576f84ac029df0a088bba500b4f450593 Mon Sep 17 00:00:00 2001 From: Owen Voorhees Date: Thu, 2 Oct 2025 15:28:10 -0700 Subject: [PATCH] CustomTasks should include environment in display strings --- .../TaskProducers/OtherTaskProducers/CustomTaskProducer.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/SWBTaskConstruction/TaskProducers/OtherTaskProducers/CustomTaskProducer.swift b/Sources/SWBTaskConstruction/TaskProducers/OtherTaskProducers/CustomTaskProducer.swift index fa1b5686..a2c06777 100644 --- a/Sources/SWBTaskConstruction/TaskProducers/OtherTaskProducers/CustomTaskProducer.swift +++ b/Sources/SWBTaskConstruction/TaskProducers/OtherTaskProducers/CustomTaskProducer.swift @@ -78,7 +78,8 @@ final class CustomTaskProducer: PhasedTaskProducer, TaskProducer { outputs: outputs, execDescription: context.settings.globalScope.evaluate(customTask.executionDescription), preparesForIndexing: customTask.preparesForIndexing, - enableSandboxing: customTask.enableSandboxing) + enableSandboxing: customTask.enableSandboxing, + showEnvironment: true) } }