Fix broken rendering

This commit is contained in:
Alexandre Aubin 2018-08-21 18:25:23 +02:00
parent d66f536a49
commit 237f10e4f0

View file

@ -35,7 +35,7 @@ Example: 3
An environment variable is available for each question asked in the installation. An environment variable is available for each question asked in the installation.
For example, if in the manifest we have a question like this For example, if in the manifest we have a question like this
``` ```json
{ {
"name": "domain", "name": "domain",
"type": "domain", "type": "domain",
@ -50,7 +50,7 @@ For example, if in the manifest we have a question like this
The name of the question is `domain` so in the script we can access it with YNH_APP_ARG_DOMAIN. The usage is to create a shorter name in the script like this: The name of the question is `domain` so in the script we can access it with YNH_APP_ARG_DOMAIN. The usage is to create a shorter name in the script like this:
``` ```bash
domain=$YNH_APP_ARG_DOMAIN domain=$YNH_APP_ARG_DOMAIN
``` ```