Skip to content

Commit

Permalink
trying text output with no-paginate
Browse files Browse the repository at this point in the history
  • Loading branch information
srprash committed Jun 20, 2024
1 parent 7d459b4 commit 9f238d4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions buildtools/sign_files.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ Begin

$retryCount = 0
do {
$jobId = aws s3api get-object-tagging --bucket $unsignedS3bucket --key $key --version-id $versionId --query 'TagSet[?Key==`signer-job-id`].Value | [0]'
$jobId -replace '"',''
$jobId = aws s3api get-object-tagging --bucket $unsignedS3bucket --key $key --version-id $versionId --query 'TagSet[?Key==`signer-job-id`].Value | [0]' --output text --no-paginate
$retryCount++
} while ($jobId -eq "null" -and $retryCount -le $maxRetryCount)

Expand Down

0 comments on commit 9f238d4

Please sign in to comment.