diff --git a/msgraph-sdk-powershell b/msgraph-sdk-powershell index 5f7bf0798cf4..0cfba3676245 160000 --- a/msgraph-sdk-powershell +++ b/msgraph-sdk-powershell @@ -1 +1 @@ -Subproject commit 5f7bf0798cf44bcb015711aa3b1d3887045d34b3 +Subproject commit 0cfba3676245c65b700a460988f0d6eadc69b548 diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 3d67cd58c80c..37be47e7c73d 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -77,7 +77,7 @@ function Update-Files { $files | ForEach-Object { $FilePath = $_.FullName # Read the file and remove any full stops at the beginning of a line - (Get-Content $FilePath) -replace '^\.', '' | Set-Content $FilePath + (Get-Content $FilePath) -replace '^\.', '' -notmatch '### -Proof' | Set-Content $FilePath } }