From 95135cbf2c81a9896f730d316b7ed7b9a1c6f063 Mon Sep 17 00:00:00 2001 From: Doug Date: Thu, 5 Mar 2026 17:41:24 +0000 Subject: [PATCH] Actually fix the post-build command. --- Tools/Sources/Commands/CI/UploadDSYMs.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tools/Sources/Commands/CI/UploadDSYMs.swift b/Tools/Sources/Commands/CI/UploadDSYMs.swift index b054f2685..6dc07ea76 100644 --- a/Tools/Sources/Commands/CI/UploadDSYMs.swift +++ b/Tools/Sources/Commands/CI/UploadDSYMs.swift @@ -29,12 +29,11 @@ struct UploadDSYMs: AsyncParsableCommand { } let command = """ - sentry-cli dif upload \ + sentry-cli --url "\(url)" dif upload \ --auth-token "\(authToken)" \ --org "\(orgSlug)" \ --project "\(projectSlug)" \ - --url "\(url)" \ - --log-level DEBUG \ + --log-level debug \ "\(dsymPath)" """