Skip to content

Commit 75536de

Browse files
committed
fix: msbuild target produces incorrect release name
1 parent e25f0f7 commit 75536de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Sentry/buildTransitive/Sentry.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@
333333
Condition="'$(SentryCLI)' != '' and '$(SentryCreateRelease)' == 'true'">
334334
<Message Importance="High" Text="Creating Sentry Release: $(_SentryRelease)" />
335335
<Exec
336-
Command="$(SentryCLIBaseCommand) releases new '$(_SentryRelease)' $(SentryReleaseOptions)"
336+
Command="$(SentryCLIBaseCommand) releases new $(_SentryRelease) $(SentryReleaseOptions)"
337337
IgnoreExitCode="true" ContinueOnError="WarnAndContinue">
338338
<Output TaskParameter="ExitCode" PropertyName="_SentryCLIExitCode" />
339339
</Exec>
@@ -344,7 +344,7 @@
344344
Condition="'$(SentryCLI)' != '' and '$(SentrySetCommits)' == 'true'">
345345
<Message Importance="High" Text="Setting Sentry commits" />
346346
<Exec
347-
Command="$(SentryCLIBaseCommand) releases set-commits $(SentrySetCommitOptions) '$(_SentryRelease)' $(SentryReleaseOptions)"
347+
Command="$(SentryCLIBaseCommand) releases set-commits $(SentrySetCommitOptions) $(_SentryRelease) $(SentryReleaseOptions)"
348348
IgnoreExitCode="true" ContinueOnError="WarnAndContinue">
349349
<Output TaskParameter="ExitCode" PropertyName="_SentryCLIExitCode" />
350350
</Exec>

0 commit comments

Comments
 (0)