mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2025-06-29 14:30:31 +00:00
downloads: Don't include .zsync files (#249)
Prevents the site from showing both AppImage and AppImage.zsync files for Linux.
This commit is contained in:
parent
3fdaa387b5
commit
c9a5a7def5
|
@ -50,6 +50,7 @@ function releaseCallback(v, count, e) {
|
|||
if (asset.name.includes('RELEASES')) return;
|
||||
if (asset.name.includes('.tar.xz')) return;
|
||||
if (asset.name.includes('-debugsymbols.zip')) return;
|
||||
if (asset.name.includes('.zsync')) return;
|
||||
|
||||
/* We only want to provide the msvc builds on the downloads page for Windows. */
|
||||
if (asset.name.includes('-mingw-')) return;
|
||||
|
|
Loading…
Reference in a new issue