We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pick
1 parent a2fd3cc commit 93c566eCopy full SHA for 93c566e
src/cmds/pick.rs
@@ -71,8 +71,9 @@ impl Command for PickCommand {
71
let cache = Cache::new()?;
72
let mut problems = cache.get_problems()?;
73
if problems.is_empty() {
74
- cache.clone().download_problems()?;
75
- Self::handler(m)?
+ cache.download_problems()?;
+ Self::handler(m)?;
76
+ return Ok(());
77
}
78
79
// filtering...
0 commit comments