diff --git a/scripts/Windows/Software/posh-git/Install.ps1 b/scripts/Windows/Software/posh-git/Install.ps1 index 611266c5..9827c9b9 100644 --- a/scripts/Windows/Software/posh-git/Install.ps1 +++ b/scripts/Windows/Software/posh-git/Install.ps1 @@ -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;