From e1da83c6f9efdce40378363ed09ad46c4f865717 Mon Sep 17 00:00:00 2001 From: buidav <105074908+buidav@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:53:30 -0700 Subject: [PATCH] fix comment language --- PowerShell/ScubaGear/Modules/Orchestrator.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerShell/ScubaGear/Modules/Orchestrator.psm1 b/PowerShell/ScubaGear/Modules/Orchestrator.psm1 index 896b683615..e47ce9f21e 100644 --- a/PowerShell/ScubaGear/Modules/Orchestrator.psm1 +++ b/PowerShell/ScubaGear/Modules/Orchestrator.psm1 @@ -1742,7 +1742,7 @@ function Invoke-SCuBACached { $ScubaResultsFileName = Join-Path -Path $OutPath -ChildPath "$($OutJsonFileName).json" $SettingsExport = $(Get-Content $ScubaResultsFileName | ConvertFrom-Json).Raw - # Uses the custom UTF8 NoBOM function when available + # Uses the custom UTF8 NoBOM function to reoutput the Provider JSON file $ProviderContent = $SettingsExport | ConvertTo-Json -Depth 20 $ActualSavedLocation = Set-Utf8NoBom -Content $ProviderContent ` -Location $ProviderJSONFilePath -FileName "$OutProviderFileName.json"