Skip to content

Commit

Permalink
Updated log for signing operation
Browse files Browse the repository at this point in the history
  • Loading branch information
bayrakmustafa committed Sep 6, 2023
1 parent 920fe00 commit 8f9935e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ if ($RESULT -match "Error" -OR $RESULT -match "Exception" -OR $RESULT -match "Mi
} else {
if ($CMD -contains "sign")
{
$LOG_USERNAME = $USERNAME -replace '"',''''
$LOG_CREDENTIAL_ID = $CREDENTIAL_ID -replace '"',''''
$LOG_USERNAME = $USERNAME.Replace('"', "")
$LOG_CREDENTIAL_ID = $CREDENTIAL_ID.Replace('"', "")
Write-Host "Code signed successfully by ${LOG_USERNAME} using ${LOG_CREDENTIAL_ID} credential id"
}
Write-Host "$RESULT"
Expand Down

0 comments on commit 8f9935e

Please sign in to comment.