Got rid of "whatif" messages when not running in whatif mode.

This commit is contained in:
iTracerFacer 2025-10-26 08:55:04 -05:00
parent aed7e3c257
commit 4651cb3a91
4 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ process {
finally {
# Clean up temporary directory
if (Test-Path $tempDir) {
Remove-Item $tempDir -Recurse -Force
Remove-Item $tempDir -Recurse -Force -WhatIf:$false
}
}
}