1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00

Merge pull request #3002 from peppy/change-mac-package-extension

Use zip distribution instead of dmg for mac builds
This commit is contained in:
Dean Herbert 2018-07-11 21:14:22 +09:00 committed by GitHub
commit 882a6afecc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ namespace osu.Desktop.Updater
bestAsset = release.Assets?.FirstOrDefault(f => f.Name.EndsWith(".exe")); bestAsset = release.Assets?.FirstOrDefault(f => f.Name.EndsWith(".exe"));
break; break;
case RuntimeInfo.Platform.MacOsx: case RuntimeInfo.Platform.MacOsx:
bestAsset = release.Assets?.FirstOrDefault(f => f.Name.EndsWith(".dmg")); bestAsset = release.Assets?.FirstOrDefault(f => f.Name.EndsWith(".app.zip"));
break; break;
} }