We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13a3db3 commit ae96311Copy full SHA for ae96311
UnitySetup/UnitySetup.psm1
@@ -360,10 +360,8 @@ function Find-UnitySetupInstaller {
360
}
361
362
# Every release type has a different pattern for finding installers
363
- $searchPages = @()
+ $searchPages = @( "https://unity3d.com/get-unity/download/archive", "https://unity3d.com/unity/beta/unity$Version" )
364
switch ($Version.Release) {
365
- 'f' { $searchPages += "https://unity3d.com/get-unity/download/archive" }
366
- 'b' { $searchPages += "https://unity3d.com/unity/beta/unity$Version" }
367
'p' {
368
$patchPage = "https://unity3d.com/unity/qa/patch-releases?version=$($Version.Major).$($Version.Minor)"
369
$searchPages += $patchPage
0 commit comments