From a10ed954c46e0471a48c0095db7e37ebea2eadcf Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Tue, 4 Nov 2025 09:51:52 +0300 Subject: [PATCH] Updated submodule and removed empty ### -Proof parameter expecting a description --- msgraph-sdk-powershell | 2 +- scripts/RemoveInvalidFullStops.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 } }