Support synonims for "release".
This commit is contained in:
parent
a7e8e768d8
commit
00b3415916
4
build.sh
4
build.sh
|
@ -8,7 +8,7 @@ MANIFEST_OUT="$BUILD/manifest.json"
|
||||||
|
|
||||||
strip_rc_ver() {
|
strip_rc_ver() {
|
||||||
MANIFEST="$1"
|
MANIFEST="$1"
|
||||||
if [ "$2" = "rel" ]; then
|
if [[ "$2" == "rel" ]]; then
|
||||||
replace='s/("version":.*)rc\d+/$1/'
|
replace='s/("version":.*)rc\d+/$1/'
|
||||||
else
|
else
|
||||||
replace='s/("version":.*)(\d+)rc(\d+)/{$1 . ($2 == "0" ? "0" : ($2-1) . ".9" . sprintf("%03d", $3))}/e'
|
replace='s/("version":.*)(\d+)rc(\d+)/{$1 . ($2 == "0" ? "0" : ($2-1) . ".9" . sprintf("%03d", $3))}/e'
|
||||||
|
@ -22,7 +22,7 @@ if [ "$1" == "tag" ]; then
|
||||||
git tag -a "$VER" && git push origin "$VER"
|
git tag -a "$VER" && git push origin "$VER"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
if [[ "$1" == "rel" ]]; then
|
if [[ "$1" =~ ^r(el(ease)?)?$ ]]; then
|
||||||
strip_rc_ver "$MANIFEST_IN" rel
|
strip_rc_ver "$MANIFEST_IN" rel
|
||||||
"$0" && "$0" bump
|
"$0" && "$0" bump
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in New Issue