Skip to content

Commit

Permalink
style: fix sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyueta committed Sep 18, 2023
1 parent ace6a46 commit 859aed0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/playbook/local-build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -233,6 +233,6 @@ try {
}

Write-Host "Completed." -ForegroundColor Green
} finally {
} finally {
Remove-Item $rootTemp -Force -EA 0 -Recurse | Out-Null
}

0 comments on commit 859aed0

Please sign in to comment.