coffee-script icon indicating copy to clipboard operation
coffee-script copied to clipboard

`--` command line arg ignored

Open vjpr opened this issue 11 years ago • 0 comments

#bin/index.coffee
console.log process.argv
coffee bin/index.coffee --
[ 'coffee',
  'xxx/bin/index.coffee',
  '--' ]

coffee -v
CoffeeScript version 1.1.3
iced bin/index.coffee --
[ 'coffee', 'xxx/bin/index.coffee' ]

iced -v
IcedCoffeeScript version 1.7.0-a

I'm writing a CLI util which I run with a script because I need to modify the NODE_PATH var.

I want to use -- in my CLI app to handle un-handled arguments.

vjpr avatar Mar 07 '14 08:03 vjpr