source: node_modules/.bin/short-unique-id.cmd@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 323 bytes
RevLine 
[d24f17c]1@ECHO off
2GOTO start
3:find_dp0
4SET dp0=%~dp0
5EXIT /b
6:start
7SETLOCAL
8CALL :find_dp0
9
10IF EXIST "%dp0%\node.exe" (
11 SET "_prog=%dp0%\node.exe"
12) ELSE (
13 SET "_prog=node"
14 SET PATHEXT=%PATHEXT:;.JS;=;%
15)
16
17endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\short-unique-id\bin\short-unique-id" %*
Note: See TracBrowser for help on using the repository browser.