Skip to content

Commit 0b8f4d3

Browse files
committed
Fix indentation
1 parent dff919e commit 0b8f4d3

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ You can create a file `.ignore` in your directory to add custom branches you wan
3636
hot-fix
3737
sprint-11
3838
new-feature
39+
user-story-5
3940
```
4041

4142
## License

commit

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ -f "$IGNORED_PATH" ]
99
then
1010
CUSTOM_BRANCHES=$(cat "$IGNORED_PATH")
1111
BRANCHES=( $CUSTOM_BRANCHES )
12-
IGNORED_BRANCHES=( ${IGNORED_BRANCHES[@]} ${BRANCHES[@]} )
12+
IGNORED_BRANCHES=( ${IGNORED_BRANCHES[@]} ${BRANCHES[@]} )
1313
fi
1414

1515
CURRENT_BRANCH_CMD="git rev-parse --abbrev-ref HEAD"
@@ -30,9 +30,9 @@ done
3030

3131
if [ "$IS_IGNORED" == false ]
3232
then
33-
echo "Commiting with branch name -> $CURRENT_BRANCH"
34-
eval $COMMIT_WITH_BRANCH
33+
echo "Commiting with branch name -> $CURRENT_BRANCH"
34+
eval $COMMIT_WITH_BRANCH
3535
else
36-
echo "Commiting with default branch"
37-
eval $DEFAULT_COMMIT
36+
echo "Commiting with default branch"
37+
eval $DEFAULT_COMMIT
3838
fi

0 commit comments

Comments
 (0)