From 409f40cf67e6b76dde85cf57c54ff595ef19a212 Mon Sep 17 00:00:00 2001 From: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> Date: Fri, 24 May 2024 09:27:45 +0200 Subject: [PATCH] Dev version: add term refs (#32927) --- .../_includes/common-tasks/development_version.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/_includes/common-tasks/development_version.md b/source/_includes/common-tasks/development_version.md index 98483671822..4dce67af42e 100644 --- a/source/_includes/common-tasks/development_version.md +++ b/source/_includes/common-tasks/development_version.md @@ -10,19 +10,19 @@ If you want to stay on the bleeding-edge Home Assistant Core development branch, {% if page.installation == "os" or page.installation == "supervised" %} -1. Join the dev channel +1. Join the dev channel. ```bash ha supervisor options --channel dev ``` -2. Reload the supervisor +2. Reload the {% term "Home Assistant Supervisor" %}. ```bash ha supervisor reload ``` -3. Update Home Assistant core to the latest dev version +3. Update {% term "Home Assistant Core" %} to the latest dev version. ```bash ha core update --backup @@ -42,24 +42,24 @@ docker pull {{ site.installation.container }}:dev 1. Stop the Home Assistant service. -2. Switch to the user that is running Home Assistant +2. Switch to the user that is running Home Assistant. ```bash sudo -u homeassistant -H -s ``` -3. Activate the virtual environment that Home Assistant is running in +3. Activate the virtual environment that Home Assistant is running in. ```bash source /srv/homeassistant/bin/activate ``` -4. Download and install the version you want +4. Download and install the version you want. ```bash pip3 install --upgrade git+https://github.com/home-assistant/core.git@dev ``` -5. When that is complete start the service again for it to use the new files. +5. When that is complete, start the service again for it to use the new files. {% endif %}