From 5d54c100415794482a3c1cb17b833448cd6fa0de Mon Sep 17 00:00:00 2001 From: Mike Gray Date: Sun, 3 Mar 2024 22:02:19 -0600 Subject: [PATCH] fix: wrap entrypoint in quotes, correct project name --- README.md | 2 +- src/files/setup.py.phal.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 49b2704..2d9caab 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/files/setup.py.phal.ts b/src/files/setup.py.phal.ts index 76d6e2e..9da7141 100644 --- a/src/files/setup.py.phal.ts +++ b/src/files/setup.py.phal.ts @@ -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}, ) `; }; \ No newline at end of file