1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

ci: fix failing upgrade_prompt test on main (#22193)

Understandably accidentally caused by
https://github.com/denoland/deno/pull/22187
This commit is contained in:
David Sherret 2024-01-30 16:13:07 -05:00 committed by GitHub
parent d923705d9d
commit 93c8e7c821
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1056,7 +1056,15 @@ async fn main_server(
.unwrap(),
);
}
(&Method::GET, "/canary-latest.txt") => {
(
&Method::GET,
"/canary-latest.txt"
| "/canary-x86_64-apple-darwin-latest.txt"
| "/canary-aarch64-apple-darwin-latest.txt"
| "/canary-x86_64-unknown-linux-latest.txt"
| "/canary-aarch64-unknown-linux-latest.txt"
| "/canary-x86_64-pc-windows-msvc-latest.txt",
) => {
return Ok(
Response::builder()
.status(StatusCode::OK)