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); }