Skip to content
Snippets Groups Projects
Commit fe71a0f9 authored by Ryan Gonzalez's avatar Ryan Gonzalez
Browse files

Fix a quoting error in the runtime YAML

Removing the `echo; ` resulted in the first character of the string
being a `"`, thus YAML only interpreted the text up until the next `"`
as the value, resulting in a syntax error.
parent 58a3cc22
Branches apertis/v2022pre
Tags apertis/0.2021.6
1 merge request!16Fix a quoting error in the runtime YAML
Pipeline #307647 passed with stages
in 30 seconds
apertis-flatdeb (0.2021.6) apertis; urgency=medium
* Fix a quoting error in the runtime YAML
-- Ryan Gonzalez <ryan.gonzalez@collabora.com> Wed, 04 Nov 2021 14:33:00 -0600
apertis-flatdeb (0.2021.5) apertis; urgency=medium
* Unbreak 'runtimes' command
......
......@@ -225,7 +225,8 @@ actions:
label: separate-locales
description: Separate the locales into their own extension
chroot: false
command: "$RECIPEDIR/separate-locales" "$ROOTDIR/usr" "$ROOTDIR/usr/share/runtime/locale"
command: |
"$RECIPEDIR/separate-locales" "$ROOTDIR/usr" "$ROOTDIR/usr/share/runtime/locale"
{{ end }}
{{ if $persist_font_cache }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment