Account for current release channel in bump-app-version script
This commit is contained in:
+16
-1
@@ -1,3 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
exec script/lib/bump-version.sh zed v $@
|
||||
channel=$(cat crates/zed/RELEASE_CHANNEL)
|
||||
|
||||
tag_suffix=""
|
||||
case $channel; in
|
||||
stable)
|
||||
;;
|
||||
preview)
|
||||
tag_suffix="-pre"
|
||||
;;
|
||||
*)
|
||||
echo "do this on a release branch where RELEASE_CHANNEL is either 'preview' or 'stable'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exec script/lib/bump-version.sh zed v $tag_suffix $@
|
||||
|
||||
Reference in New Issue
Block a user