npm / cmd-shim

The cmd-shim used in npm
ISC License
76 stars 40 forks source link

Add "@" to start of single line .cmd files. #13

Closed SkyLined closed 9 years ago

SkyLined commented 9 years ago

npm is creating single line ".cmd" files through this package that do not start with an "@", which causes the command it contains to be echoed to the console.

C:\>test a b c

C:\>"C:\Users\SkyLined\AppData\Roaming\npm\\node_modules\test\test.js"   a b c
This is a test

C:\>

I've created a pull request to fix this.