diff options
author | rinpatch <rinpatch@sdf.org> | 2019-10-14 18:39:56 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-10-14 18:39:56 +0300 |
commit | 58fea88564c8dcece007a547b186965963e4dcb4 (patch) | |
tree | 5595e0bfb953ab96d26d35e97733ce6518eb03cc /rel/files | |
parent | 0e9243e8a28e957f2a9401eb153cc2b27723d0a3 (diff) | |
download | pleroma-58fea88564c8dcece007a547b186965963e4dcb4.tar.gz |
Prepare pleroma_ctl for moving master to stable and relax the error
message
Diffstat (limited to 'rel/files')
-rwxr-xr-x | rel/files/bin/pleroma_ctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rel/files/bin/pleroma_ctl b/rel/files/bin/pleroma_ctl index f767fe134..90f87a990 100755 --- a/rel/files/bin/pleroma_ctl +++ b/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 } |