mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-04 20:37:56 +00:00
refactor: just match enum (#236)
Remove forced unwrap since match is already exhausted
This commit is contained in:
parent
0fa862a2e9
commit
cdea401589
@ -63,15 +63,13 @@ pub fn init_stub(shell_name: &str) -> io::Result<()> {
|
||||
);
|
||||
None
|
||||
}
|
||||
_ => {
|
||||
/* Calling unwrap() here is fine because the None case will have
|
||||
already matched on the previous arm */
|
||||
Some(shell_basename) => {
|
||||
println!(
|
||||
"printf \"\\n{0} is not yet supported by starship.\\n\
|
||||
For the time being, we support bash, zsh, and fish.\\n\
|
||||
Please open an issue in the starship repo if you would like to \
|
||||
see support for {0}:\\nhttps://github.com/starship/starship/issues/new\"\\n\\n",
|
||||
shell_basename.unwrap()
|
||||
shell_basename
|
||||
);
|
||||
None
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user