Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: wrap entrypoint in quotes, correct project name #23

Merged
merged 2 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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},
)
`;
};
Loading