dthree / vorpal

Node's framework for interactive CLIs
http://vorpal.js.org
MIT License
5.64k stars 280 forks source link

Command option with equal sign isn't parsed correctly #130

Closed scotthovestadt closed 8 years ago

scotthovestadt commented 8 years ago

Failing test:

it('should parse equal sign command option', function (done) {
  exec('say "hello=world"', done, function () {
    stdout().should.equal('hello=world');
  });
});
scotthovestadt commented 8 years ago

Oh, it looks intentional. It breaks something I wrote but I'll just change it to use a colon or something.

dthree commented 8 years ago

Yah just did something recently on this.

scotthovestadt commented 8 years ago

@dthree This issue is causing major headaches for me. It's impossible to pass a SQL string via command-line arguments. I need an option to turn it off. I'm working on it now.

dthree commented 8 years ago

:+1: all good, the flag is fine with me.

Thanks.