Closed
Description
Consider the following node program test.js:
console.log(process.argv);
When I run the program "node test.js hello" it prints:
$ node test.js hello
[ 'node', '/home/derk/test.js', 'hello' ]
LiveScript was behaving like this but with 1.3 it eats all arguments. Consider the following livescript program test.ls:
console.log process.argv
When I run this in 1.3 I get an error message from livescript:
$ lsc test.ls hello
Can't find hallo.ls
It seems as if anything passed to the command line is consumed and processed by lsc.