Skip to content

Commit acfc866

Browse files
authored
Merge pull request #5 from tweag/non-quiet-execute
Don't be quiet when executing nix-build.
2 parents b3fde75 + 8c9729f commit acfc866

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nixpkgs/nixpkgs.bzl

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ def _nixpkgs_package_impl(ctx):
3737
path = ctx.attr.path
3838

3939
attr_path = ctx.attr.attribute_path or ctx.name
40-
res = ctx.execute(["nix-build", path, "-A", attr_path, "--no-out-link"])
40+
buildCmd = ["nix-build", path, "-A", attr_path, "--no-out-link"]
41+
res = ctx.execute(buildCmd, quiet = False)
4142
if res.return_code == 0:
4243
output_path = res.stdout.splitlines()[-1]
4344
else:

0 commit comments

Comments
 (0)