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:
parent
d923705d9d
commit
93c8e7c821
1 changed files with 9 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue