Skip to content

Commit

Permalink
Fix escaping in update_asana_for_release
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Feb 29, 2024
1 parent 89dbfc5 commit c7cf5fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update_asana_for_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ construct_this_release_includes() {
printf '%s' '<ul>'
for task_id in "${task_ids[@]}"; do
if [[ "$task_id" != "$release_task_id" ]]; then
printf '%s' "<li><a data-asana-gid=\"${task_id}\"/></li>"
printf '%s' "<li><a data-asana-gid=\\\"${task_id}\\\"/></li>"
fi
done
printf '%s' '</ul>'
Expand Down

0 comments on commit c7cf5fe

Please sign in to comment.