Skip to content

Commit

Permalink
Escape quotes in Repo Description (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
scubbo authored May 12, 2024
1 parent 86e095d commit b7feec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
pushd /tmp
cookiecutter gh:simonw/click-app --no-input \
app_name=$REPO_NAME \
description="$(echo $INFO | jq -r .repository.description)" \
description="$(echo $INFO | jq -r .repository.description | sed 's/\"/\\\"/g')" \
github_username="$(echo $INFO | jq -r .repository.owner.login)" \
author_name="$(echo $INFO | jq -r .repository.owner.name)"
popd
Expand Down

0 comments on commit b7feec3

Please sign in to comment.