Fix liquid warning (#5109)

This commit is contained in:
Frank Taillandier 2017-10-25 21:49:00 +02:00 committed by Misty Stanley-Jones
parent 9c43b9ad8a
commit 2e2a148fe4
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ image for IBM z Systems. For example, you can modify the CLI command for getting
a [UCP support dump](..\..\get-support.md) to use an environment variable
that indicates the current architecture:
{% raw %}
```bash
[[ $(docker info --format='{{.Architecture}}') == s390x ]] && export _ARCH='-s390x' || export _ARCH=''
@ -26,6 +27,7 @@ docker container run --rm \
{{ page.ucp_org }}/{{ page.ucp_repo }}:{{ page.ucp_version }}${_ARCH} \
support > docker-support.tgz
```
{% endraw %}
In this example, the environment variable is named `_ARCH`, but you can use any
valid shell name.