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