From 5a4b5bf58183dab94bd19a6ed10b88b42fdf611d Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 27 Jul 2023 02:25:17 +0200 Subject: [PATCH] Allow unawaited installation of `posh-git` --- scripts/Windows/Software/posh-git/Install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;