We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb1e0d3 commit 00c005aCopy full SHA for 00c005a
1 file changed
{{cookiecutter.project_name|replace(" ", "")}}/Taskfile.yml
@@ -105,7 +105,7 @@ tasks:
105
PLATFORM_SUFFIX: '{{ '{{if eq .PLATFORM "all"}}' }}all{{ '{{else if .PLATFORM}}' }}{{ '{{.PLATFORM | replace "/" "_"}}' }}{{ '{{else}}' }}{{ '{{.LOCAL_PLATFORM | replace "/" "_"}}' }}{{ '{{end}}' }}'
106
# We always output to "latest", since we're also overwriting latest
107
OUTPUT_FILE: '{{ '{{.IMAGE_NAME | replace "/" "_"}}' }}_latest_{{ '{{.PLATFORM_SUFFIX}}' }}.tar'
108
- DESCRIPTION: '{{ cookiecutter.project_short_description }}'
+ DESCRIPTION: "{{ cookiecutter.project_short_description | replace('"', '\\"') | replace("'", "\\'") }}"
109
cmds:
110
# First build: load if same platform, output to file if cross-platform, or push if PUBLISH is true
111
- |
0 commit comments