Skip to content

Commit 982bf98

Browse files
committed
chore: Update-StandardsComments
1 parent 0e1e210 commit 982bf98

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Tools/Update-StandardsComments.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,9 @@ foreach ($Standard in $StandardsInfo) {
112112
continue
113113
}
114114
else {
115-
$NewComment.Add(" $(EscapeMarkdown($Property.Value.ToString()))`n")
115+
if ($null -ne $Property.Value) {
116+
$NewComment.Add(" $(EscapeMarkdown($Property.Value.ToString()))`n")
117+
}
116118
}
117119
}
118120
}

0 commit comments

Comments
 (0)