Skip to content

Commit ce8e360

Browse files
authored
Handle double quote marks in description
Refs simonw/click-app-template-repository#2
1 parent d1c6180 commit ce8e360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
pushd /tmp
5757
cookiecutter gh:simonw/python-lib --no-input \
5858
lib_name=$REPO_NAME \
59-
description="$(echo $INFO | jq -r .repository.description)" \
59+
description="$(echo $INFO | jq -r .repository.description | sed 's/\"/\\\"/g')" \
6060
github_username="$(echo $INFO | jq -r .repository.owner.login)" \
6161
author_name="$(echo $INFO | jq -r .repository.owner.name)"
6262
popd

0 commit comments

Comments
 (0)