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 451be6c commit ccef2f7Copy full SHA for ccef2f7
java/kotlin-extractor/kotlin_plugin_versions.py
@@ -57,6 +57,8 @@ def get_single_version(fakeVersionOutput = None):
57
raise Exception(f'No suitable kotlinc version found for {current_version} (got {versionOutput}; know about {str(many_versions)})')
58
59
def get_latest_url():
60
+ if ci_version not in many_versions:
61
+ raise Exception('CI version must be one of many_versions')
62
url = 'https://github.com/JetBrains/kotlin/releases/download/v' + ci_version + '/kotlin-compiler-' + ci_version + '.zip'
63
return url
64
0 commit comments