Skip to content

Commit

Permalink
Use the correct binary directory on Windows
Browse files Browse the repository at this point in the history
AHAHAHAAHHAHA
  • Loading branch information
pradyunsg committed Jan 4, 2022
1 parent 818d231 commit 85be6e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sphinx_theme_builder/_internal/nodejs.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def run_in(
"NPM_CONFIG_PREFIX": os.fsdecode(nodeenv),
"npm_config_prefix": os.fsdecode(nodeenv),
"NODE_PATH": os.fsdecode(nodeenv / "lib" / "node_modules"),
"PATH": os.pathsep.join([os.fsdecode(nodeenv / "bin"), os.environ["PATH"]]),
"PATH": os.pathsep.join([os.fsdecode(nodeenv / _BIN_DIR), os.environ["PATH"]]),
"NODE_ENV": "production" if production else "development",
}

Expand Down

0 comments on commit 85be6e9

Please sign in to comment.