Use ‘release-candidate’ instead of ‘rc’

This makes the version alias match other places where we reference a
release candidate version.
This commit is contained in:
Daz DeBoer 2021-06-24 15:59:03 -07:00
parent 5c01db8918
commit fc7de996f8
No known key found for this signature in database
GPG key ID: 70F584A28F2230E8
4 changed files with 14 additions and 8 deletions

View file

@ -16,7 +16,7 @@ export async function gradleVersion(version: string): Promise<string> {
switch (version) {
case 'current':
return gradleCurrent()
case 'rc':
case 'release-candidate':
return gradleReleaseCandidate()
case 'nightly':
return gradleNightly()