Skip to content

Commit 574d9da

Browse files
authored
Merge pull request #11152 from wyunchi-ms/wyunchi/bugfix/stack-edge
solve the problem of build stack edge
2 parents 547f76a + 0eb5461 commit 574d9da

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tools/CreateMappings_rules.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,6 @@
162162
{ "regex": "HealthcareApisService", "alias": "HealthcareApis Service" },
163163
{ "regex": "Maintenance", "alias": "Maintenance" },
164164
{ "regex": "CosmosDB", "alias": "Cosmos DB" },
165-
{ "regex": "Support", "alias": "Support" }
165+
{ "regex": "Support", "alias": "Support" },
166+
{ "regex": "StackEdge", "alias": "Stack Edge" }
166167
]

tools/GenerateHelp.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Param(
1313

1414
$ResourceManagerFolders = Get-ChildItem -Directory -Path "$PSScriptRoot\..\src" | Where-Object { $_.Name -ne 'lib' -and $_.Name -ne 'Package' -and $_.Name -ne 'packages' }
1515
Import-Module "$PSScriptRoot\HelpGeneration\HelpGeneration.psm1"
16-
$UnfilteredHelpFolders = Get-ChildItem -Include 'help' -Path "$PSScriptRoot\..\artifacts" -Recurse -Directory | where { $_.FullName -like "*$BuildConfig*" -and $_.FullName -notlike "*Stack*" }
16+
$UnfilteredHelpFolders = Get-ChildItem -Include 'help' -Path "$PSScriptRoot\..\artifacts" -Recurse -Directory | where { $_.FullName -like "*$BuildConfig*" -and ($_.FullName -notlike "*Stack*" -or $_.FullName -like "*StackEdge*") }
1717
$FilteredHelpFolders = $UnfilteredHelpFolders
1818
if (![string]::IsNullOrEmpty($FilteredModules))
1919
{

0 commit comments

Comments
 (0)