Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
majkinetor committed Sep 20, 2017
1 parent f281c9e commit 178bb25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AU/Public/Set-DescriptionFromReadme.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function Set-DescriptionFromReadme{
$cdata = $Package.NuspecXml.CreateCDataSection($description)
$xml_Description = $Package.NuspecXml.GetElementsByTagName('description')[0]
$xml_Description.RemoveAll()
$xml_Description.AppendChild($cdata)
$xml_Description.AppendChild($cdata) | Out-Null

$Package.SaveNuspec()
}

0 comments on commit 178bb25

Please sign in to comment.