mirror of
https://github.com/actions/versions-package-tools.git
synced 2025-12-10 11:41:23 +00:00
fix nitpicks
This commit is contained in:
@@ -2,18 +2,8 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Check and return list of new available tool versions
|
Check and return list of new available tool versions
|
||||||
|
|
||||||
.PARAMETER DistURL
|
.PARAMETER ToolName
|
||||||
Required parameter. Link to the json file included all available tool versions
|
Required parameter. The name of tool for which parser is available (Node, Go, Python)
|
||||||
.PARAMETER ManifestLink
|
|
||||||
Required parameter. Link to the the version-manifest.json file
|
|
||||||
.PARAMETER VersionFilterToInclude
|
|
||||||
Optional parameter. List of filters to include particular versions
|
|
||||||
.PARAMETER VersionFilterToExclude
|
|
||||||
Optional parameter. List of filters to exclude particular versions
|
|
||||||
.PARAMETER RetryIntervalSec
|
|
||||||
Optional parameter. Retry interval in seconds
|
|
||||||
.PARAMETER RetryCount
|
|
||||||
Optional parameter. Retry count
|
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param (
|
param (
|
||||||
|
|||||||
@@ -41,7 +41,6 @@ class PythonVersionsParser: BaseVersionsParser {
|
|||||||
switch ($Label) {
|
switch ($Label) {
|
||||||
"a" { return "alpha" }
|
"a" { return "alpha" }
|
||||||
"b" { return "beta" }
|
"b" { return "beta" }
|
||||||
"rc" { return "rc" }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $Label
|
return $Label
|
||||||
|
|||||||
Reference in New Issue
Block a user