diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-23 15:57:22 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-23 16:01:20 -0800 |
| commit | 984f710c3f4fc8a5a54a17fe7c7992ef5c7ed0ff (patch) | |
| tree | caaa103cb4c966e7247b52f45b863ff45e5e0736 /scripts | |
| parent | 6367924964403b32f7c562ababcec0ff42b17f24 (diff) | |
| download | vcpkg-984f710c3f4fc8a5a54a17fe7c7992ef5c7ed0ff.tar.gz vcpkg-984f710c3f4fc8a5a54a17fe7c7992ef5c7ed0ff.zip | |
Tweak Verbose messages
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/findFileRecursivelyUp.ps1 | 4 |
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 |
