Fix raw tag (#5176)

This commit is contained in:
Jim Galasyn 2017-10-30 16:32:32 -07:00 committed by GitHub
parent b17d29bccb
commit 7ada9fdfcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,10 @@ 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
{% raw %}
[[ $(docker info --format='{{.Architecture}}') == s390x ]] && export _ARCH='-s390x' || export _ARCH=''
{% endraw %}
docker container run --rm \
--name ucp \
@ -27,7 +28,6 @@ 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.