Skip to content

Commit 75d4693

Browse files
authored
Merge pull request #64 from WeAreInSpark/fix-collectionUri
fixing param validator
2 parents 229083f + a182dc9 commit 75d4693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)