Skip to content

Commit

Permalink
CP-40844 uses string literal rather than string join
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Lancaster <[email protected]>
  • Loading branch information
CitrixChris committed Oct 25, 2023
1 parent bd7eaad commit 91bd5e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XenModel/Actions/Updates/DownloadFileAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public DownloadAndUpdateClientAction(string updateName, Uri uri, string outputFi
: base(updateName,
uri,
outputFileName,
string.Join("", updateName, ".msi"),
$"{updateName}.msi",
true)
{
_checksum = checksum;
Expand Down

0 comments on commit 91bd5e0

Please sign in to comment.