Skip to content

Commit

Permalink
Merge pull request #23 from mikejgray/FEAT_PHALPlugins
Browse files Browse the repository at this point in the history
fix: wrap entrypoint in quotes, correct project name
  • Loading branch information
mikejgray authored Mar 4, 2024
2 parents ef08757 + a1ee1b5 commit 45305dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ After editing `.projenrc.json`, run `pj` to regenerate the project files. This c

In a new directory, run:

`npx projen new ovosphal --from "@mikejgray/ovos-skill-projen@latest"`
`npx projen new ovosphalproject --from "@mikejgray/ovos-skill-projen@latest"`

The instructions are the same as for creating a new skill template, except that you have an additional option to set the PHAL plugin as admin or not. The default is `false`, indicating that the PHAL plugin will not run as root.

Expand Down
2 changes: 1 addition & 1 deletion src/files/setup.py.phal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ setup(
include_package_data=True,
install_requires=get_requirements("requirements.txt"),
keywords="ovos plugin voice assistant",
entry_points={${admin ? 'ovos.plugin.phal.admin' : 'ovos.plugin.phal'}: PLUGIN_ENTRY_POINT},
entry_points={"${admin ? 'ovos.plugin.phal.admin' : 'ovos.plugin.phal'}": PLUGIN_ENTRY_POINT},
)
`;
};

0 comments on commit 45305dd

Please sign in to comment.