Commit 499b4682 authored by Vincent Driessen's avatar Vincent Driessen

Merge branch 'develop' of https://github.com/jezdez/gitflow into develop

parents 2f05c3c8 8f280e0b
......@@ -288,9 +288,11 @@ require_branch_absent() {
}
require_tag_absent() {
if has $1 $(git_all_tags); then
die "Tag '$1' already exists. Pick another name."
fi
for tag in $(git_all_tags); do
if [ "$1" = "$tag" ]; then
die "Tag '$1' already exists. Pick another name."
fi
done
}
require_branches_equal() {
......
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