diff --git a/CHANGELOG b/CHANGELOG index 43feefb..5dc62e8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +1.13.2 +------ +* Fix the shiv creation script + 1.13.1 ------ * Move the pypi repo to remote-exec-api diff --git a/scripts/setup-entrypoints.py b/scripts/setup-entrypoints.py index 080f23c..1ccb506 100644 --- a/scripts/setup-entrypoints.py +++ b/scripts/setup-entrypoints.py @@ -17,7 +17,7 @@ def main(): entry_point_env = PYOXIDIZER_ENTRYPOINT if len(sys.argv) > 2 and sys.argv[2] == "--shiv": entry_point_env = SHIV_ENTRYPOINT - resources = pkg_resources.get_entry_map("remote-exec", "console_scripts") + resources = pkg_resources.get_entry_map("remote-exec-api", "console_scripts") for name, entry in resources.items(): file = output_dir / name if entry.module_name != "remote.entrypoints":