We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This code panics with "No such file or directory" with version 0.10 or above.
use cmd_lib::*; fn main() { dbg!(run_cmd!(ls)); let options = ""; dbg!(run_cmd!(ls $options)); }
I think ls "" should be interpreted as ls in this library.
ls ""
ls
Is this your intention? and is there some workaround?
The text was updated successfully, but these errors were encountered:
6572e89
Thanks for reporting this. Yeah, it is better to skip the empty arguments.
Sorry, something went wrong.
No branches or pull requests
This code panics with "No such file or directory" with version 0.10 or above.
I think
ls ""
should be interpreted asls
in this library.Is this your intention? and is there some workaround?
The text was updated successfully, but these errors were encountered: