Merge branch 'stable-2.16' into stable-3.0

* stable-2.16:
  Bazel: Make build tool chain forward compatible

Change-Id: I47679ac19d8147910e2bbc91f81c2ceb3e14571d
This commit is contained in:
David Ostrovsky
2019-06-07 00:10:18 +02:00

View File

@@ -49,9 +49,9 @@ npm_binary = repository_rule(
def _run_npm_binary_str(ctx, tarball, args):
python_bin = ctx.which("python")
return " ".join([
python_bin,
ctx.path(ctx.attr._run_npm),
ctx.path(tarball),
str(python_bin),
str(ctx.path(ctx.attr._run_npm)),
str(ctx.path(tarball)),
] + args)
def _bower_archive(ctx):