浏览代码

Prepare pleroma_ctl for moving master to stable and relax the error

message
tags/v1.1.4
rinpatch 4 年前
父节点
当前提交
bbe409c914
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      rel/files/bin/pleroma_ctl

+ 2
- 2
rel/files/bin/pleroma_ctl 查看文件

@@ -35,11 +35,11 @@ detect_branch() {
if [ "$branch" = "develop" ]; then
echo "develop"
elif [ "$branch" = "" ]; then
echo "master"
echo "stable"
else
# Note: branch name in version is of SemVer format and may only contain [0-9a-zA-Z-] symbols —
# if supporting releases for more branches, need to ensure they contain only these symbols.
echo "Releases are built only for master and develop branches" >&2
echo "Can't detect the branch automatically, please specify it by using the --branch option." >&2
exit 1
fi
}


正在加载...
取消
保存