Skip to content

Commit

Permalink
Better formatting for Steam notifications.
Browse files Browse the repository at this point in the history
  • Loading branch information
aschearer committed Oct 29, 2022
1 parent f4b2205 commit 991d18e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BuildUploader.Console/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private static void TryNotifySlack(SteamSettings steamSettings, BuildDefinition
if (success)
{
payload = string.Format(
"{0} build {1} {2} has been uploaded to the Steam {3}.",
"{0} build `{1} {2}` has been uploaded to the Steam `{3}`.",
steamSettings.DisplayName,
latestBuild.BuildTarget,
latestBuild.BuildNumber,
Expand All @@ -96,7 +96,7 @@ private static void TryNotifySlack(SteamSettings steamSettings, BuildDefinition
else
{
payload = string.Format(
"Failed to upload {0} build {1} {2} to Steam {3}.",
"Failed to upload {0} build `{1} {2}` to Steam `{3}`.",
steamSettings.DisplayName,
latestBuild.BuildTarget,
latestBuild.BuildNumber,
Expand Down

0 comments on commit 991d18e

Please sign in to comment.