From 8bc5d6498e778f9bd0b2cb11e7cb95887f83f2ad Mon Sep 17 00:00:00 2001 From: bmcminn Date: Wed, 30 Mar 2016 00:01:41 -0500 Subject: [PATCH] added bin/electron-har.cmd variant for windows instances of this module --- bin/electron-har.cmd | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 bin/electron-har.cmd diff --git a/bin/electron-har.cmd b/bin/electron-har.cmd new file mode 100644 index 0000000..d2abbd0 --- /dev/null +++ b/bin/electron-har.cmd @@ -0,0 +1,7 @@ +@IF EXIST "%~dp0\node.exe" ( + "%~dp0\node.exe" "%~dp0electron-har" %* +) ELSE ( + @SETLOCAL + @SET PATHEXT=%PATHEXT:;.JS;=;% + node "%~dp0electron-har" %* +) -- 2.22.0