Skip to content

Commit

Permalink
Correct git requirement manifest specification (#2438)
Browse files Browse the repository at this point in the history
As in issue #92 (home-assistant/actions#92) this update to documentation corrects this in line with hassfest validation.
  • Loading branch information
andyb2000 authored Nov 4, 2024
1 parent 4bd68db commit 1bed08d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/creating_integration_manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ It is also possible to use a public git repository to install a requirement. Th

```json
{
"requirements": ["<project> @ git+https://github.com/<user>/<project>.git@<git ref>"]
"requirements": ["git+https://github.com/<user>/<project>.git@<git ref>"]
}
```
`<git ref>` 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).
Expand All @@ -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"]
}
```

Expand Down

0 comments on commit 1bed08d

Please sign in to comment.