-
Notifications
You must be signed in to change notification settings - Fork 191
Closed
Labels
bugThis relates to a bug in the existing module.This relates to a bug in the existing module.
Description
A typo results in an incorrect URL being built. Because the variable is misspelled, the repository name is not appended to the URL.
PowerShellForGitHub/GitHubRepositories.ps1
Line 616 in 9bdb37c
'UriFragment' = "repos/$OwnerName/$ReposistoryName" |
Fix:
- 'UriFragment' = "repos/$OwnerName/$ReposistoryName"
+ 'UriFragment' = "repos/$OwnerName/$RepositoryName"
Metadata
Metadata
Assignees
Labels
bugThis relates to a bug in the existing module.This relates to a bug in the existing module.