From d681d82f221c7c4c52944bcb28d9e9a69beccc69 Mon Sep 17 00:00:00 2001 From: Tolga Balci Date: Thu, 2 Mar 2017 04:24:07 -0500 Subject: [PATCH] Added Verbose parameter to install.ps1 --- install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.ps1 b/install.ps1 index c54135317..85be3763b 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,6 +1,6 @@ -param([switch]$WhatIf = $false, [switch]$Force = $false) +param([switch]$WhatIf = $false, [switch]$Force = $false, [switch]$Verbose = $false) $installDir = Split-Path $MyInvocation.MyCommand.Path -Parent Import-Module $installDir\src\posh-git.psd1 -Add-PoshGitToProfile -WhatIf:$WhatIf -Force:$Force +Add-PoshGitToProfile -WhatIf:$WhatIf -Force:$Force -Verbose:$Verbose