From 72250524137f6d1be32f0a1a42bb01d50eabeb94 Mon Sep 17 00:00:00 2001 From: osy Date: Sat, 12 Aug 2023 14:57:43 -0700 Subject: [PATCH] worker: more verbose logging in ESD creation --- Source/Worker.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Worker.swift b/Source/Worker.swift index 020a61a..894c5cf 100644 --- a/Source/Worker.swift +++ b/Source/Worker.swift @@ -380,7 +380,7 @@ extension Worker { if build.count > 32 { build = String(build.prefix(32)) } - try await exec(at: nil, executableURL: script, esdUrl.path, isoUrl.path, build) + try await exec(at: nil, executableURL: script, "-v", esdUrl.path, isoUrl.path, build) completedDownloadUrl = isoUrl }