Merge pull request #9330 from bbrala/better-debug-log-windows

Update docs to use `Tee-Object` in PowerShell in Windows.
This commit is contained in:
Brian Cain 2018-01-04 10:20:07 -08:00 committed by GitHub
commit 399df57a79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ stdout using `&>`:
$ vagrant up --debug &> vagrant.log $ vagrant up --debug &> vagrant.log
``` ```
On Windows: On Windows in PowerShell (outputs to log and screen):
``` ```
$ vagrant up --debug > vagrant.log 2>&1 $ vagrant up --debug 2>&1 | Tee-Object -FilePath ".\vagrant.log"
``` ```