Skip to content

Commit

Permalink
Handle double quote marks in description
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw authored May 12, 2024
1 parent 08cd3d7 commit 04b8120
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/datasette-plugin --no-input \
plugin_name=$(echo $INFO | jq -r '.repository.name | sub("datasette-"; "")') \
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 04b8120

Please sign in to comment.