Skip to content

Commit 41dd4e7

Browse files
committed
Merge pull request Azure#1663 from johanste/UpdateBuildToIncludeHelpDirectory
Update build script to include help directory (if available) in gener…
2 parents 6bb4338 + 1af1ccb commit 41dd4e7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/CLU/BuildPackage.ps1

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ if ($packageId -ne "Microsoft.CLU.Commands")
3535
{
3636
$contentFileText += " <file src=""content\*.lx"" target=""content""/>`r`n"
3737
$contentFileText += " <file src=""content\*xml"" target=""content""/>`r`n"
38+
if (Test-Path "$packageSource\content\help")
39+
{
40+
$contentFileText += " <file src=""content\help\*.hlp"" target=""content\help""/>`r`n"
41+
}
3842
}
3943
if ($renameFileExists)
4044
{

0 commit comments

Comments
 (0)