We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2585a4c commit e3bf82eCopy full SHA for e3bf82e
backup_github_repositories.ps1
@@ -38,7 +38,7 @@ Param (
38
Mandatory=$True,
39
HelpMessage="The name of a GitHub user that has access to the GitHub API."
40
)]
41
- [string]$username,
+ [string]$userName,
42
43
[Parameter(
44
@@ -133,7 +133,7 @@ if ($organisationName) {
133
#
134
# @see https://developer.github.com/v3/auth/#basic-authentication
135
136
-$basicAuthenticationCredentials = "${username}:${plainTextUserSecret}"
+$basicAuthenticationCredentials = "${userName}:${plainTextUserSecret}"
137
$encodedBasicAuthenticationCredentials = [System.Convert]::ToBase64String(
138
[System.Text.Encoding]::ASCII.GetBytes($basicAuthenticationCredentials)
139
)
0 commit comments