-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support more than one level of subcommands #63
Comments
Possibly related to #1 |
yup this is a really old uncompleted thing but the "infrastructure" is there |
+1 this would be handy |
this is useful, like "git remote". "git remote add", "git remote rm" |
I had to implement this for component(1), and honestly I think it's cleaner to just do it the git way, via |
Did anyone work on this? Would be great to have it working like this. |
it's pretty simple if you're going with the var bin = 'component-' + cmd;
var proc = spawn(bin, args, { stdio: 'inherit', customFds: [0, 1, 2] }); |
Hmm, sorry but I do not understand what you mean with this. How this will allow something for ex.:
|
for example |
+1 I would like to be able to write |
+1 Any updates on this? |
closing because git-style is a lot more elegant than the .action stuff from before |
Right now we can do this:
which results with:
But we can't do this:
which results with:
The text was updated successfully, but these errors were encountered: