Skip to content

Commit 4fbe312

Browse files
committed
fix: module.IndependentVersionLInk handling
1 parent 107bdbe commit 4fbe312

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tasks/Manage-AutomationAccount/Manage-AutomationAccount.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ function GetModuleContentLink {
334334
process {
335335
if (-not [string]::IsNullOrEmpty($moduleDefinition.VersionIndependentLink)) {
336336
#we want to support custom nuget providers that have different format of URL
337-
if($moduleDefinition.VersionIndependentLink -contains '{0}')
337+
if($moduleDefinition.VersionIndependentLink.Contains('{0}'))
338338
{
339339
return $moduleDefinition.VersionIndependentLink -f $moduleDefinition.Version
340340
}

vss-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "Manage-AutomationAccount",
44
"name": "Manage-AutomationAccount",
5-
"version": "1.9.121",
5+
"version": "1.9.122",
66
"publisher": "GreyCorbelSolutions",
77
"targets": [
88
{

0 commit comments

Comments
 (0)