From 94b044ce6fb67c5b886387678d1f2bbb1358ef01 Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Tue, 23 Dec 2014 15:42:17 -0700 Subject: [PATCH] fix indenting --- git/githelpers | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/git/githelpers b/git/githelpers index 4edb54f..dff0168 100644 --- a/git/githelpers +++ b/git/githelpers @@ -65,8 +65,8 @@ del_pr() { } clean_branches() { - BRANCHES=`git branch | grep -v \*` - for i in ${BRANCHES}; do - git branch -d $i - done + BRANCHES=`git branch | grep -v \*` + for i in ${BRANCHES}; do + git branch -d $i + done } \ No newline at end of file