From 859aed06ccae0e206568677ee5c8d5f628a8a678 Mon Sep 17 00:00:00 2001 From: Xyueta Date: Mon, 18 Sep 2023 20:57:07 +0200 Subject: [PATCH] style: fix sentence --- src/playbook/local-build.cmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/playbook/local-build.cmd b/src/playbook/local-build.cmd index 54c36c2fb2..eb88891ac9 100644 --- a/src/playbook/local-build.cmd +++ b/src/playbook/local-build.cmd @@ -7,7 +7,7 @@ $defaultConfig = @{ # Name of resulting APBX fileName = "Atlas Test" - # If the script should delete any playbook that already exists with the same name or not + # Should the script delete any playbook that already exists with the same name or not # If not, it will make something like "Atlas Test (1).apbx" replaceOldPlaybook = $true @@ -74,7 +74,7 @@ if (Test-Path $shortcut) { try { $configNotHashtable = Get-Content $configPath | ConvertFrom-Json - # convert JSON config to hashtable + # convert JSON config to hashtable $config = @{}; foreach ($property in $configNotHashtable.PSObject.Properties) { $config[$property.Name] = $property.Value } } catch { Write-Host "Your configuration is corrupted." -ForegroundColor Yellow @@ -233,6 +233,6 @@ try { } Write-Host "Completed." -ForegroundColor Green -} finally { +} finally { Remove-Item $rootTemp -Force -EA 0 -Recurse | Out-Null } \ No newline at end of file