Skip to content

Commit ed1b507

Browse files
committed
Fix for #48
1 parent c9de405 commit ed1b507

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/public/Initialize-Blogger.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Function Initialize-Blogger {
7676
Write-Verbose "Using environment variable PSBLOGGER_CLIENT_SECRET for ClientSecret"
7777
$ClientSecret = $env:PSBLOGGER_CLIENT_SECRET
7878
}
79-
if ($ClientId -eq "<<CLIENT_ID>>" -or $ClientSecret -eq "<<CLIENT_SECRET>>") {
79+
if ($ClientId -like "*CLIENT_ID*" -or $ClientSecret -like "*CLIENT_SECRET*") {
8080
Write-Error "See contribution guide for how to set up your own Google API for local development."
8181
return
8282
}

0 commit comments

Comments
 (0)