From 679cc151bdf7a1eb8a9a1ce66137984baf880cc7 Mon Sep 17 00:00:00 2001 From: unreadable Date: Thu, 17 Dec 2015 01:00:25 +0200 Subject: [PATCH] Add a note for PowerShell users. --- Readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Readme.md b/Readme.md index cd9d61b9..bae742d4 100644 --- a/Readme.md +++ b/Readme.md @@ -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.