Print which archs were bundled in the installer after the build completes

This commit is contained in:
Cameron Gutman 2021-01-13 19:36:46 -06:00
parent e9968fbab3
commit 53098edc85

View file

@ -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