Skip to content

Commit 48e7de3

Browse files
committed
Fix filepath in commands.py
1 parent 011d410 commit 48e7de3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

commands.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
from subprocess import check_call
99
from distutils import log
1010

11-
here = os.path.dirname(os.path.abspath(__file__))
12-
project_root = os.path.dirname(os.path.dirname(os.path.dirname(here)))
13-
node_root = os.path.join(project_root, "packages", "python", "plotly", "js")
11+
project_root = os.path.dirname(os.path.abspath(__file__))
12+
node_root = os.path.join(project_root, "js")
1413
is_repo = os.path.exists(os.path.join(project_root, ".git"))
1514
node_modules = os.path.join(node_root, "node_modules")
1615
targets = [

0 commit comments

Comments
 (0)