From 067745e42d03a87b06138b079de3297fa6cc5169 Mon Sep 17 00:00:00 2001 From: kawaiizenbo <48113593+kawaiizenbo@users.noreply.github.com> Date: Sat, 6 Aug 2022 10:44:51 -0700 Subject: [PATCH] fix --- README.md | 2 +- RepoFullDownloader-Core/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 542b284..440348c 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,4 @@ An internet connection. Running with no URL will use the repo list from `repos.txt` ## Binaries -https://nightly.link/kawaiizenbo/RepoFullDownloader-Core/workflows/build/master/Build.zip +https://nightly.link/kawaiizenbo/RepoFullDownloader-Core/workflows/dotnet/master/Build.zip diff --git a/RepoFullDownloader-Core/Program.cs b/RepoFullDownloader-Core/Program.cs index 0c72ccd..4c48f7e 100644 --- a/RepoFullDownloader-Core/Program.cs +++ b/RepoFullDownloader-Core/Program.cs @@ -149,7 +149,7 @@ namespace RepoFullDownloader_Core { Console.WriteLine("Could not download " + link + "Packages.bz2: " + e.Message); Console.WriteLine("Attempting to download " + link + "Packages.gz"); - Stream packagesGz = webClient.GetStreamAsync(link + "Packages.bz2").Result; + Stream packagesGz = webClient.GetStreamAsync(link + "Packages.gz").Result; FileStream packagesGzDecompressed = File.Create($"./output/{cleanLink}/Packages"); GZip.Decompress(packagesGz, packagesGzDecompressed, true); }