Fixed the AuthorName/AuthorEmail variable check for Set-GitHubContent (#295)

Fixed the variable check for Set-GitHubContent.

Resolves #285.
This commit is contained in:
John 2020-10-16 23:59:10 +02:00 коммит произвёл GitHub
Родитель c92d8a64eb
Коммит ec7950c02c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -392,8 +392,8 @@ filter Set-GitHubContent
if ($PSBoundParameters.ContainsKey('AuthorName') -or
$PSBoundParameters.ContainsKey('AuthorEmail'))
{
if (![System.String]::IsNullOrEmpty($CommitterName) -and
![System.String]::IsNullOrEmpty($CommitterEmail))
if (![System.String]::IsNullOrEmpty($AuthorName) -and
![System.String]::IsNullOrEmpty($AuthorEmail))
{
$hashBody['author'] = @{
name = $AuthorName