Skip to content

Commit

Permalink
Merge pull request #451 from tolgabalci/verbose-install-parameter
Browse files Browse the repository at this point in the history
Verbose install parameter
  • Loading branch information
dahlbyk authored Mar 2, 2017
2 parents a3db658 + d681d82 commit 7f3a7fb
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 7f3a7fb

Please sign in to comment.