Skip to content

Commit b9993bd

Browse files
committed
Switch to then_some.
1 parent 4f79ac3 commit b9993bd

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/cargo/util/config/mod.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1694,11 +1694,7 @@ impl Config {
16941694
.join(&toolchain)
16951695
.join("bin")
16961696
.join(&tool_exe);
1697-
if toolchain_exe.exists() {
1698-
Some(toolchain_exe)
1699-
} else {
1700-
None
1701-
}
1697+
toolchain_exe.exists().then_some(toolchain_exe)
17021698
})
17031699
.unwrap_or_else(|| PathBuf::from(tool_str))
17041700
}

0 commit comments

Comments
 (0)