Skip to content

Commit

Permalink
Force replace output path
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Nov 15, 2024
1 parent d7a63d4 commit 06a3ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sf_sign.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ param (
Write-Host "SF starting signing $filePath"

try {
Submit-SigningRequest -InputArtifactPath "$filePath" -ApiToken "$env:SIGNPATH_API_KEY" -OrganizationId "e091b552-3623-4d9d-83d7-059d8f32978b" -ProjectSlug "SoulFireClient" -SigningPolicySlug "$env:SIGNPATH_POLICY_SLUG" -OutputArtifactPath "$filePath" -WaitForCompletion
Submit-SigningRequest -Force -InputArtifactPath "$filePath" -ApiToken "$env:SIGNPATH_API_KEY" -OrganizationId "e091b552-3623-4d9d-83d7-059d8f32978b" -ProjectSlug "SoulFireClient" -SigningPolicySlug "$env:SIGNPATH_POLICY_SLUG" -OutputArtifactPath "$filePath" -WaitForCompletion
} catch {
Write-Host "An error occurred:" -ForegroundColor Red
Write-Host $_.Exception.Message -ForegroundColor Yellow
Expand Down

0 comments on commit 06a3ea5

Please sign in to comment.