Skip to content

Commit

Permalink
fix documentationUri
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Weatherford authored and Stephen Weatherford committed Nov 13, 2023
1 parent dc9b6f6 commit a8d75d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/ResourceManager/Utilities/BicepUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public static void PublishFile(string bicepFilePath, string target, string docum
if (!string.IsNullOrWhiteSpace(documentationUri))
{
CheckMinimalVersionRequirement(MinimalVersionRequirementForBicepPublishWithOptionalDocumentationUriParameter);
bicepPublishCommand += $" --documentationUri '{documentationUri}'";
bicepPublishCommand += $" --documentationUri {GetQuotedFilePath(documentationUri)}";
}

if (force)
Expand Down

0 comments on commit a8d75d4

Please sign in to comment.