Commit ee272106 authored by Vincent Driessen's avatar Vincent Driessen

Merge pull request #195 from Zoramite/feature/Issue148

Updating the escape characters to fix + in the branch name
parents 07dacd52 afbf92c6
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment