Skip to content

Commit

Permalink
cargo search for ZWNJ instead of blank
Browse files Browse the repository at this point in the history
Could also use "--limit 0" but I'm not sure how old that option is

Closes #79
  • Loading branch information
nabijaczleweli committed May 6, 2018
1 parent 4325624 commit aeccbd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn actual_main() -> Result<(), i32> {

{
// Searching for "" will just update the registry
let search_res = Command::new("cargo").arg("search").arg("").status().unwrap();
let search_res = Command::new("cargo").arg("search").arg("\u{200C}").status().unwrap();
if !search_res.success() {
return Err(search_res.code().unwrap_or(-1));
}
Expand Down

0 comments on commit aeccbd6

Please sign in to comment.