When I call cargo-alias test it's panicked:
thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', src\bin\cargo-alias.rs:37:59
because you need check result of split here:
let (alias, commands) = new_alias.split_once("=").unwrap();
When I call
cargo-alias testit's panicked:because you need check result of split here: