From d0f1cccd4c6ca035130ce266a7f86de8a5d63693 Mon Sep 17 00:00:00 2001 From: chris062689 Date: Tue, 5 Sep 2017 23:56:02 -0400 Subject: [PATCH] Hide MSVC builds on the downloads page. --- site/content/download.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/site/content/download.md b/site/content/download.md index bfb4b6c..4203958 100644 --- a/site/content/download.md +++ b/site/content/download.md @@ -88,6 +88,9 @@ The Bleeding Edge build of Citra is the same as our nightly builds, with additio if (asset.name.includes('.7z')) return; if (asset.name.includes('RELEASES')) return; + /* We only want to provide mingw builds on the downloads page. */ + if (asset.name.includes('-msvc-')) return; + let env_icon = './images/icons/file.png'; if (asset.name.includes('windows')) env_icon = '/images/icons/windows.png'; else if (asset.name.includes('exe')) env_icon = '/images/icons/windows.png';