Skip to content

Commit

Permalink
fix intentional regex error
Browse files Browse the repository at this point in the history
Now CI should pass..
  • Loading branch information
hds committed Oct 23, 2024
1 parent 3011906 commit 3f58065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ fn check_docs_rs_images() -> Result<()> {

let regex_line = line!() + 1;
let re = Regex::new(
r"https://raw.githubusercontent.com/tokio-rs/console-/main/(assets/tokio-console-[\d\.]+\/\w+\.png)",
r"https://raw.githubusercontent.com/tokio-rs/console/main/(assets/tokio-console-[\d\.]+\/\w+\.png)",
)
.expect("couldn't compile regex");
let reader = BufReader::new(file);
Expand Down

0 comments on commit 3f58065

Please sign in to comment.