Skip to content

Commit 006319f

Browse files
committed
fix: param validator collectionUri
1 parent 744d102 commit 006319f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

AzureDevOpsPowerShell/Private/Validate-CollectionUri.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function Validate-CollectionUri {
77
$CollectionUri
88
)
99

10-
if ($CollectionUri -notmatch '^https:\/\/dev\.azure\.com\/\w+$') {
10+
if ($CollectionUri -notmatch '^https:\/\/dev\.azure\.com\/\w+') {
1111
Write-AzdoError "CollectionUri must be a valid Azure DevOps collection URI starting with 'https://dev.azure.com/'"
1212
} else {
1313
$true

0 commit comments

Comments
 (0)