Skip to content

Commit

Permalink
Merge pull request #195 from Zoramite/feature/Issue148
Browse files Browse the repository at this point in the history
Updating the escape characters to fix + in the branch name
  • Loading branch information
nvie committed Feb 13, 2012
2 parents 07dacd5 + afbf92c commit ee27210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitflow-common
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ warn() { echo "$@" >&2; }
die() { warn "$@"; exit 1; }

escape() {
echo "$1" | sed 's/\([\.\+\$\*]\)/\\\1/g'
echo "$1" | sed 's/\([\.\$\*]\)/\\\1/g'
}

# set logic
Expand Down

0 comments on commit ee27210

Please sign in to comment.