We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c26ab commit f253002Copy full SHA for f253002
mk/main.mk
@@ -27,12 +27,13 @@ CFG_RELEASE=$(CFG_RELEASE_NUM)
27
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)
28
endif
29
ifeq ($(CFG_RELEASE_CHANNEL),beta)
30
-CFG_RELEASE=$(CFG_RELEASE_NUM)-beta$(CFG_BETA_CYCLE)
+# The beta channel is temporarily called 'alpha'
31
+CFG_RELEASE=$(CFG_RELEASE_NUM)-alpha$(CFG_BETA_CYCLE)
32
# When building beta/nightly distributables just reuse the same "beta"
33
# name so when we upload we'll always override the previous
34
# nighly. This doesn't actually impact the version reported by rustc -
35
# it's just for file naming.
-CFG_PACKAGE_VERS=beta
36
+CFG_PACKAGE_VERS=alpha
37
38
ifeq ($(CFG_RELEASE_CHANNEL),nightly)
39
CFG_RELEASE=$(CFG_RELEASE_NUM)-nightly
0 commit comments