Skip to content

Commit 8fcfa9f

Browse files
authored
🔀 Merge pull request #12 from Graphmaxer/gbda_fix
Fix gbda alias
2 parents c22c152 + bbe3e81 commit 8fcfa9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aliases.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function gba {
3434
function gbda {
3535
$MergedBranchs = $(git branch --merged | Select-String "^(\*|\s*(master|develop|dev)\s*$)" -NotMatch).Line
3636
$MergedBranchs | ForEach-Object {
37-
git branch -d $_
37+
git branch -d $_.Trim()
3838
}
3939
}
4040
function gbl {

0 commit comments

Comments
 (0)