Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsPilgaard committed Jan 30, 2021
1 parent b267f88 commit 10cf964
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions RemoveClientConfigs.bat.ps1 → RemoveClientConfigs.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
. "$PSScriptRoot\settings.ps1"

$CONFIGS_TO_REMOVE | ForEach-Object {
$configPath = "$PSScriptRoot/config/$_"
Write-Host "Removing config " -NoNewline
Write-Host $configPath -ForegroundColor Yellow
Remove-Item -Path $configPath -ErrorAction SilentlyContinue -Recurse
}

. "$PSScriptRoot\settings.ps1"

$CONFIGS_TO_REMOVE | ForEach-Object {
$configPath = "$PSScriptRoot/config/$_"
Write-Host "Removing config " -NoNewline
Write-Host $configPath -ForegroundColor Yellow
Remove-Item -Path $configPath -ErrorAction SilentlyContinue -Recurse
}

pause

0 comments on commit 10cf964

Please sign in to comment.