Skip to content

Commit

Permalink
Added Verbose parameter to install.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
tolgabalci committed Mar 2, 2017
1 parent c2a92dd commit d681d82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.ps1
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d681d82

Please sign in to comment.