mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 01:52:55 +08:00
Don't download executables when pulling down existing assets.
This commit is contained in:
parent
c192de9ebd
commit
1699c9fb1d
@ -283,6 +283,8 @@ namespace osu.Desktop.Deploy
|
||||
|
||||
foreach (var a in assets)
|
||||
{
|
||||
if (a.Name.EndsWith(".exe")) continue;
|
||||
|
||||
write($"- Downloading {a.Name}...", ConsoleColor.Yellow);
|
||||
new FileWebRequest(Path.Combine(ReleasesFolder, a.Name), $"{GitHubApiEndpoint}/assets/{a.Id}").AuthenticatedBlockingPerform();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user