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:
commit
399df57a79
|
@ -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"
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue