Skip to content

Commit

Permalink
fix: last
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Jul 5, 2019
1 parent d3ff134 commit e7b21d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/node/node_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ if %errorlevel% neq 0 exit /b %errorlevel%
package(default_visibility = ["//visibility:public"])
exports_files([
"run_npm.sh.template",
"bin/node_repo_args.sh",{exported_node_bin}
"bin/node_repo_args.sh",
"bin/node{entry_ext}",
"bin/npm{entry_ext}",
"bin/npm_node_repositories{entry_ext}",
Expand All @@ -455,7 +455,6 @@ alias(name = "npm", actual = "{npm_actual}")
alias(name = "yarn", actual = "{yarn_actual}")
""".format(
entry_ext = ".cmd" if is_windows else "",
exported_node_bin = ("\n \"%s\"," % node_exec_label) if repository_ctx.attr.vendored_node else "",
node_bin_actual = node_exec_label,
node_actual = node_entry,
npm_actual = npm_node_repositories_entry,
Expand Down

0 comments on commit e7b21d5

Please sign in to comment.