You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some Github module repos use "vX.Y.Z" tag numbering instead of "X.Y.Z". The following lines in PSDependScripts\Github.ps1 will ensure that the dependency will install (Install-Dependency) and test (Test-Dependency) correctly:
(changes in bold, line 354-356)
if($GitHubTag.name -match "^v{0,1}\d+(?:.\d+)+$" -and ($DependencyVersion -match "^\d+(?:.\d+)+$" -or $DependencyVersion -eq "latest"))
{
$GitHubVersion = New-Object "System.Version" ($GitHubTag.name -replace '^v','')
This allows the dependency Version = 'latest' as well as Version = 'x.y.z' to match the mentioned Github tag numbering format.
The text was updated successfully, but these errors were encountered:
Some Github module repos use "vX.Y.Z" tag numbering instead of "X.Y.Z". The following lines in PSDependScripts\Github.ps1 will ensure that the dependency will install (Install-Dependency) and test (Test-Dependency) correctly:$DependencyVersion -match "^\d+(?:.\d+)+$ " -or $DependencyVersion -eq "latest"))
(changes in bold, line 354-356)
if($GitHubTag.name -match "^v{0,1}\d+(?:.\d+)+$" -and (
{
$GitHubVersion = New-Object "System.Version" ($GitHubTag.name -replace '^v','')
This allows the dependency Version = 'latest' as well as Version = 'x.y.z' to match the mentioned Github tag numbering format.
The text was updated successfully, but these errors were encountered: