We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 487c6d6 commit f429fe6Copy full SHA for f429fe6
src/local_config.rs
@@ -24,7 +24,7 @@ pub fn config(opt: &Options) -> Result<bool> {
24
25
let mut multi_select = MultiSelect::new();
26
27
- return if opt.local_config.exists() {
+ if opt.local_config.exists() {
28
debug!(
29
"Local configuration file found at {}",
30
opt.local_config.display()
@@ -60,7 +60,6 @@ pub fn config(opt: &Options) -> Result<bool> {
60
println!("Aborting.");
61
}
62
63
- Ok(false)
64
} else {
65
66
"No local configuration file found at {}",
@@ -104,8 +103,9 @@ pub fn config(opt: &Options) -> Result<bool> {
104
103
105
106
107
108
};
+
+ Ok(false)
109
110
111
fn format_package(package_name: &String, dependencies: &Vec<String>) -> String {
0 commit comments