Skip to content

Commit c855522

Browse files
authored
Remove print statements from ruby_runtime.bzl (#84)
This reduces noise in the build by removing messages that look like: ``` DEBUG: [...]/ruby_runtime.bzl:5:10: download and extract ruby-build DEBUG: [...]ruby_runtime.bzl:13:10: ./bin/ruby-build --verbose 2.7.0 ./build ```
1 parent 5c904cd commit c855522

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ruby/private/toolchains/ruby_runtime.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@ load("//ruby/private:constants.bzl", "RULES_RUBY_WORKSPACE_NAME")
22
load("//ruby/private/toolchains:repository_context.bzl", "ruby_repository_context")
33

44
def _install_ruby_version(ctx, version):
5-
print("download and extract ruby-build")
65
ctx.download_and_extract(
76
url = "https://github.com/rbenv/ruby-build/archive/v20200727.tar.gz",
87
sha256 = "71679d49d9190250059eaa0bc0bedd080c00a523ec47662f559f7629f71772ea",
98
stripPrefix = "ruby-build-20200727",
109
)
1110

1211
install_path = "./build"
13-
print("./bin/ruby-build", "--verbose", version, install_path)
1412
ctx.execute(
1513
["./bin/ruby-build", "--verbose", version, install_path],
1614
quiet = False,

0 commit comments

Comments
 (0)