Add a note for PowerShell users.

This commit is contained in:
unreadable 2015-12-17 01:00:25 +02:00
parent 1a8e9647b0
commit 679cc151bd

View File

@ -58,6 +58,12 @@ setInterval(function(){
```cmd
set DEBUG=*,-not_this
```
Note that PowerShell using different syntax to set environment variables.
```cmd
$env:DEBUG = "DEBUG=*,-not_this"
```
Then, run the program to be debugged as usual.