aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/findFileRecursivelyUp.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/findFileRecursivelyUp.ps1 b/scripts/findFileRecursivelyUp.ps1
index 788adbf08..4b6409e8c 100644
--- a/scripts/findFileRecursivelyUp.ps1
+++ b/scripts/findFileRecursivelyUp.ps1
@@ -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 \ No newline at end of file