From 1bed08de7e352410591d35cd71dde122cff60603 Mon Sep 17 00:00:00 2001 From: Andy Brown Date: Mon, 4 Nov 2024 10:58:40 +0000 Subject: [PATCH] Correct git requirement manifest specification (#2438) As in issue #92 (https://github.com/home-assistant/actions/issues/92) this update to documentation corrects this in line with hassfest validation. --- docs/creating_integration_manifest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/creating_integration_manifest.md b/docs/creating_integration_manifest.md index 5d1d8d50..fad83498 100644 --- a/docs/creating_integration_manifest.md +++ b/docs/creating_integration_manifest.md @@ -155,7 +155,7 @@ It is also possible to use a public git repository to install a requirement. Th ```json { - "requirements": [" @ git+https://github.com//.git@"] + "requirements": ["git+https://github.com//.git@"] } ``` `` can be any git reference: branch, tag, commit hash, ... . See [PIP documentation about git support](https://pip.pypa.io/en/stable/topics/vcs-support/#git). @@ -164,7 +164,7 @@ The following example will install the `except_connect` branch of the `pycoolmas ```json { - "requirements": ["pycoolmaster @ git+https://github.com/issacg/pycoolmaster.git@except_connect"] + "requirements": ["git+https://github.com/issacg/pycoolmaster.git@except_connect"] } ```