Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the bug of missing title #999

Merged
merged 9 commits into from
Sep 15, 2020
Prev Previous commit
Next Next commit
Remove extra title regex
  • Loading branch information
sima-zhu committed Sep 15, 2020
commit 353b9431c5b3ae839fdddb3464bff318428962a5
1 change: 0 additions & 1 deletion eng/common/scripts/update-docs-metadata.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ function GetAdjustedReadmeContent($pkgInfo, $lang){

# only replace the version if the formatted header can be found
$titleRegex = "(\# Azure .+? (?:client|plugin|shared) library for (?:JavaScript|Java|Python|\.NET|C))"
sima-zhu marked this conversation as resolved.
Show resolved Hide resolved
$titleRegex = "(\# Azure .+? (?:client|plugin|shared) library for (?:JavaScript|Java|Python|\.NET|C))"
$fileTitle = ""
if ($pkgInfo.ReadmeContent -match $titleRegex) {
sima-zhu marked this conversation as resolved.
Show resolved Hide resolved
sima-zhu marked this conversation as resolved.
Show resolved Hide resolved
$fileContent = $pkgInfo.ReadmeContent -replace $titleRegex, "`${1} - Version $($pkgInfo.PackageVersion) `n"
scbedd marked this conversation as resolved.
Show resolved Hide resolved
Expand Down