Allow unawaited installation of posh-git

This commit is contained in:
Manuel Thalmann 2023-07-27 02:25:17 +02:00
parent c851336400
commit 5a4b5bf581

View file

@ -3,6 +3,6 @@ param($context);
. "$PSScriptRoot/../../Scripts/Context.ps1";
[Context] $context = $context;
Install-Module -Scope AllUsers posh-git;
powershell -c "Install-Module -Scope AllUsers posh-git;";
Install-Module -AcceptLicense -Scope AllUsers -Force posh-git;
powershell -c "Install-Module -Scope AllUsers -Force posh-git;";
. "$PSScriptRoot/../../Config/posh-git/Install.ps1" $context;