Skip to content

Commit

Permalink
fixed package name in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rcortini committed May 27, 2024
1 parent 71cffd6 commit 30330e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class PostInstallCommand(install):
def run(self):
install.run(self)
# Run `npm install` in the node directory
node_dir = os.path.join(self.install_lib, 'my_hybrid_package', 'node')
node_dir = os.path.join(self.install_lib, 'pybruno', 'node')
subprocess.check_call(['npm', 'install'], cwd=node_dir)

setup(
Expand Down

0 comments on commit 30330e4

Please sign in to comment.