This code panics with "No such file or directory" with version 0.10 or above. ```rust 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. Is this your intention? and is there some workaround?