Ignore release/XXX tags by default

这个提交包含在:
wpetit 2019-03-15 11:47:10 +01:00
父节点 f87c18f907
当前提交 09673ce967
共有 1 个文件被更改,包括 7 次插入0 次删除

查看文件

@ -7,6 +7,13 @@ if [ -f debian/changelog ] || [ ! -d .git ]; then
exit
fi
# Check ignore release tag
IGNORE_RELEASE_TAG=$(tamarin_db get ignore_release_tag "yes")
if [ "${IGNORE_RELEASE_TAG}" == "yes" ]; then
tamarin_warn "Release tag is ignored. Add 'ignore_release_tag=no' in .tamarinrc to enable."
exit
fi
# Get commits log as changelog
BUILD_TAG=$(tamarin_db get build_tag "last")