aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-23 15:57:22 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-23 16:01:20 -0800
commit984f710c3f4fc8a5a54a17fe7c7992ef5c7ed0ff (patch)
treecaaa103cb4c966e7247b52f45b863ff45e5e0736 /scripts
parent6367924964403b32f7c562ababcec0ff42b17f24 (diff)
downloadvcpkg-984f710c3f4fc8a5a54a17fe7c7992ef5c7ed0ff.tar.gz
vcpkg-984f710c3f4fc8a5a54a17fe7c7992ef5c7ed0ff.zip
Tweak Verbose messages
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