Commit ec2c895c authored by Vincent Driessen's avatar Vincent Driessen

Add extra line to error message for clarification.

parent ab4b80d5
...@@ -53,7 +53,7 @@ gitflow_require_branch() { ...@@ -53,7 +53,7 @@ gitflow_require_branch() {
gitflow_require_branch_absent() { gitflow_require_branch_absent() {
echo "$ALL_BRANCHES" | grep "^$1\$" 2>/dev/null >/dev/null echo "$ALL_BRANCHES" | grep "^$1\$" 2>/dev/null >/dev/null
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
die "Branch '$1' already exists." die "Branch '$1' already exists. Pick another name."
fi fi
} }
......
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