Skip to content

Commit

Permalink
fix: to last
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan committed Jul 4, 2019
1 parent d1fbfd3 commit d3ff134
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions internal/node/node_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +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",{exported_node_bin}
"bin/node{entry_ext}",
"bin/npm{entry_ext}",
"bin/npm_node_repositories{entry_ext}",
Expand All @@ -456,7 +455,7 @@ alias(name = "npm", actual = "{npm_actual}")
alias(name = "yarn", actual = "{yarn_actual}")
""".format(
entry_ext = ".cmd" if is_windows else "",
exported_node_bin = ("\"%s\"," % node_exec_label) if repository_ctx.attr.vendored_node 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 d3ff134

Please sign in to comment.