Skip to content

Commit

Permalink
refactor: Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlydog committed Sep 23, 2023
1 parent f91b076 commit af6a30b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Convert-PowerShellTipFilesToJsonFile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Write-Verbose "The following read-only properties will be excluded from the JSON

Write-Verbose "Writing $numberOfTips PowerShell Tip objects to JSON file '$powerShellTipsJsonFilePath'."
$tips |
Sort-Object -Property CreatedDate, Title |
Sort-Object -Property CreatedDate, Title | # Also sort by Title so tips created on the same date are always added in the same order.
Select-Object -ExcludeProperty $readOnlyClassPropertyNames |
ConvertTo-Json -Depth 100 |
Out-File -FilePath $powerShellTipsJsonFilePath -Encoding UTF8 -Force
Expand Down

0 comments on commit af6a30b

Please sign in to comment.