Skip to content

Commit f253002

Browse files
committed
mk: The beta channel temporarily produced alpha versions
1 parent 56c26ab commit f253002

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mk/main.mk

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ CFG_RELEASE=$(CFG_RELEASE_NUM)
2727
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)
2828
endif
2929
ifeq ($(CFG_RELEASE_CHANNEL),beta)
30-
CFG_RELEASE=$(CFG_RELEASE_NUM)-beta$(CFG_BETA_CYCLE)
30+
# The beta channel is temporarily called 'alpha'
31+
CFG_RELEASE=$(CFG_RELEASE_NUM)-alpha$(CFG_BETA_CYCLE)
3132
# When building beta/nightly distributables just reuse the same "beta"
3233
# name so when we upload we'll always override the previous
3334
# nighly. This doesn't actually impact the version reported by rustc -
3435
# it's just for file naming.
35-
CFG_PACKAGE_VERS=beta
36+
CFG_PACKAGE_VERS=alpha
3637
endif
3738
ifeq ($(CFG_RELEASE_CHANNEL),nightly)
3839
CFG_RELEASE=$(CFG_RELEASE_NUM)-nightly

0 commit comments

Comments
 (0)