Tweak Verbose messages

This commit is contained in:
Alexander Karatarakis 2017-02-23 15:57:22 -08:00
parent 6367924964
commit 984f710c3f

View File

@ -11,8 +11,8 @@ $currentDir = $startingDir
while (!($currentDir -eq "") -and !(Test-Path "$currentDir\$filename"))
{
Write-Verbose "Examining: $currentDir"
Write-Verbose "Examining $currentDir for $filename"
$currentDir = Split-path $currentDir -Parent
}
Write-Verbose "Found: $currentDir"
Write-Verbose "Examining $currentDir for $filename - Found"
return $currentDir