Reorder installation steps
This commit is contained in:
parent
aa14dd7beb
commit
40e67c23e1
|
@ -91,13 +91,8 @@ $null = New-Module {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
Invoke-Hook "Install-PSModules" -Fallback {
|
|
||||||
Install-Module -AcceptLicense -Force PSWindowsUpdate;
|
|
||||||
Install-Module -AcceptLicense -Force PSScriptAnalyzer;
|
|
||||||
. "$PSScriptRoot/../Software/PinnedItem/Manage.ps1";
|
|
||||||
};
|
|
||||||
|
|
||||||
if (-not (Test-PSPackage Selenium.WebDriver)) {
|
if (-not (Test-PSPackage Selenium.WebDriver)) {
|
||||||
|
Write-Host "Installing browser automation tools…";
|
||||||
Install-Module -AcceptLicense -Force NuGet;
|
Install-Module -AcceptLicense -Force NuGet;
|
||||||
Import-Module NuGet;
|
Import-Module NuGet;
|
||||||
$null = Install-Package -Force Selenium.WebDriver -RequiredVersion 4.10.0 -SkipDependencies;
|
$null = Install-Package -Force Selenium.WebDriver -RequiredVersion 4.10.0 -SkipDependencies;
|
||||||
|
@ -105,6 +100,13 @@ $null = New-Module {
|
||||||
}
|
}
|
||||||
|
|
||||||
Install-ChocoPackage selenium-gecko-driver firefox;
|
Install-ChocoPackage selenium-gecko-driver firefox;
|
||||||
|
|
||||||
|
Invoke-Hook "Install-PSModules" -Fallback {
|
||||||
|
Install-Module -AcceptLicense -Force PSWindowsUpdate;
|
||||||
|
Install-Module -AcceptLicense -Force PSScriptAnalyzer;
|
||||||
|
. "$PSScriptRoot/../Software/PinnedItem/Manage.ps1";
|
||||||
|
};
|
||||||
|
|
||||||
Set-Stage ([SetupStage]::Configure);
|
Set-Stage ([SetupStage]::Configure);
|
||||||
} else {
|
} else {
|
||||||
$null = Import-Module PSWindowsUpdate;
|
$null = Import-Module PSWindowsUpdate;
|
||||||
|
|
Loading…
Reference in a new issue