diff options
Diffstat (limited to 'node_modules/.bin/lzmajs.cmd')
| -rw-r--r-- | node_modules/.bin/lzmajs.cmd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/node_modules/.bin/lzmajs.cmd b/node_modules/.bin/lzmajs.cmd new file mode 100644 index 0000000..1f68526 --- /dev/null +++ b/node_modules/.bin/lzmajs.cmd @@ -0,0 +1,17 @@ +@ECHO off +SETLOCAL +CALL :find_dp0 + +IF EXIST "%dp0%\node.exe" ( + SET "_prog=%dp0%\node.exe" +) ELSE ( + SET "_prog=node" + SET PATHEXT=%PATHEXT:;.JS;=;% +) + +"%_prog%" "%dp0%\..\lzma-native\bin\lzmajs" %* +ENDLOCAL +EXIT /b %errorlevel% +:find_dp0 +SET dp0=%~dp0 +EXIT /b |