Skip to content

Commit

Permalink
fix(builtin): pass quiet attr though to build file generation on npm …
Browse files Browse the repository at this point in the history
…/ yarn install (#2400)
  • Loading branch information
mattem authored Jan 20, 2021
1 parent 1dda0af commit ceb76d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/npm_install/npm_install.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ def _create_build_files(repository_ctx, rule_type, node, lock_file):
str(repository_ctx.attr.strict_visibility),
",".join(repository_ctx.attr.included_files),
native.bazel_version,
], timeout = 1200) # double the default timeout in case of many packages, see #2231
# double the default timeout in case of many packages, see #2231
], timeout = 1200, quiet = repository_ctx.attr.quiet)
if result.return_code:
fail("generate_build_file.ts failed: \nSTDOUT:\n%s\nSTDERR:\n%s" % (result.stdout, result.stderr))

Expand Down

0 comments on commit ceb76d6

Please sign in to comment.