mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-05-31 13:56:13 -07:00
12 lines
486 B
PowerShell
12 lines
486 B
PowerShell
# For some reason, Unity is failing in github actions windows runners
|
|
# due to missing Visual C++ 2013 redistributables.
|
|
# This script downloads and installs the required redistributables.
|
|
Write-Output ""
|
|
Write-Output "#########################################################"
|
|
Write-Output "# Installing Visual C++ Redistributables (2013) #"
|
|
Write-Output "#########################################################"
|
|
Write-Output ""
|
|
|
|
|
|
choco install vcredist2013 -y --no-progress
|