Skip to content

Commit

Permalink
Remove GitHub API proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikb committed Jul 13, 2024
1 parent 147c05b commit 2fd1dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stage4/src/executors/deno.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ impl Executor for Deno {
fn get_download_urls<'a>(&self, _input: &'a AppInput) -> Pin<Box<dyn Future<Output=Vec<Download>> + 'a>> {
Box::pin(async move {
let mut downloads: Vec<Download> = vec!();
let octocrab = octocrab::Octocrab::builder().base_uri("https://ggcmddenogithubreleases.azureedge.net/").unwrap().build().unwrap();
let octocrab = octocrab::Octocrab::builder().build().unwrap();
let mut page: u32 = 1;
loop {
let releases = octocrab.repos("denoland", "deno")
Expand Down

0 comments on commit 2fd1dea

Please sign in to comment.