From 424b261d7d712c7faee648e0ba11c7576f1f1562 Mon Sep 17 00:00:00 2001 From: Anton Kolesnyk Date: Mon, 12 Feb 2024 09:22:08 -0800 Subject: [PATCH 1/2] Fix case-sensitive spelling in scripts that get deployed to C++ repo --- eng/common/spelling/Invoke-Cspell.ps1 | 2 +- eng/scripts/Set-VcpkgWriteModeCache.ps1 | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/eng/common/spelling/Invoke-Cspell.ps1 b/eng/common/spelling/Invoke-Cspell.ps1 index 9fc5dec9b99..509c6b00eff 100644 --- a/eng/common/spelling/Invoke-Cspell.ps1 +++ b/eng/common/spelling/Invoke-Cspell.ps1 @@ -87,7 +87,7 @@ function Test-VersionReportMatches() { $expectedPackageVersion = '6.12.0' # Act - $actual = &"$PSSCriptRoot/Invoke-Cspell.ps1" ` + $actual = &"$PSScriptRoot/Invoke-Cspell.ps1" ` -JobType '--version' # Assert diff --git a/eng/scripts/Set-VcpkgWriteModeCache.ps1 b/eng/scripts/Set-VcpkgWriteModeCache.ps1 index 2ee5740e003..a757300e9ea 100644 --- a/eng/scripts/Set-VcpkgWriteModeCache.ps1 +++ b/eng/scripts/Set-VcpkgWriteModeCache.ps1 @@ -1,3 +1,5 @@ +#cspell: ignore azblob + param( [string] $StorageAccountKey ) From 8207e4717a93c69b7d34e8fcd4cd82485f945100 Mon Sep 17 00:00:00 2001 From: Anton Kolesnyk <41349689+antkmsft@users.noreply.github.com> Date: Mon, 12 Feb 2024 09:51:47 -0800 Subject: [PATCH 2/2] Removed cspell:ignore per https://github.com/Azure/azure-sdk-for-cpp/pull/5346#discussion_r1486546416 --- eng/scripts/Set-VcpkgWriteModeCache.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/eng/scripts/Set-VcpkgWriteModeCache.ps1 b/eng/scripts/Set-VcpkgWriteModeCache.ps1 index a757300e9ea..2ee5740e003 100644 --- a/eng/scripts/Set-VcpkgWriteModeCache.ps1 +++ b/eng/scripts/Set-VcpkgWriteModeCache.ps1 @@ -1,5 +1,3 @@ -#cspell: ignore azblob - param( [string] $StorageAccountKey )