Open izqui opened 5 years ago
Related to #320
string
: even if using quotes, it will just use the first word and interpret everything after a space as a new argument.
Can't figure this out either... but after checking this example:
#!/usr/bin/env node
var opts = require('yargs')
.argv;
console.log(opts);
And seeing that either of these work:
'hello world'
"hello world"
hello\ world
I'm thinking it's something in our configuration/middle-wares :thinking:
bool
and array
should work once https://github.com/aragon/aragon-cli/pull/555 is merged
Related to #1008
Currently state:
string
: even if using quotes, it will just use the first word and interpret everything after a space as a new argument.bool
: i haven't been able to find a value to send afalse
parameterarrays
: 🤷♀️