From 53098edc855e994a0e26f151ef3e4b2b8b774ce9 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 13 Jan 2021 19:36:46 -0600 Subject: [PATCH] Print which archs were bundled in the installer after the build completes --- scripts/generate-bundle.bat | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/generate-bundle.bat b/scripts/generate-bundle.bat index 5a9da826..0b983794 100644 --- a/scripts/generate-bundle.bat +++ b/scripts/generate-bundle.bat @@ -100,6 +100,14 @@ rem Rename the installer to match the publishing convention ren %INSTALLER_FOLDER%\MoonlightSetup.exe MoonlightSetup-%VERSION%.exe echo Build successful for Moonlight v%VERSION% installer! +echo. +echo x86 included: YES +echo x64 included: YES +if %INCLUDE_ARM64% NEQ 0 ( + echo ARM64 included: YES +) else ( + echo ARM64 included: NO +) exit /b 0 :Error