Skip to content

Commit

Permalink
reposition [s
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsmida committed May 23, 2024
1 parent 2e72949 commit a214d16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trigger-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
done <<< "$changed_filenames"
# Format encoded_file_contents with quotes and commas
formatted_encoded_file_contents="[ $(for elem in "${base64_encoded_files[@]}"; do echo "$elem,"; done) ]"
formatted_encoded_file_contents="$(for elem in "${base64_encoded_files[@]}"; do echo "$elem,"; done)"
formatted_encoded_file_contents=$(echo $formatted_encoded_file_contents | sed 's/,$//')
formatted_encoded_file_contents="[ $(echo $formatted_encoded_file_contents | sed 's/,$//') ]"
echo curl -L \
-X POST \
Expand Down

0 comments on commit a214d16

Please sign in to comment.