diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-05-15 07:00:36 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-05-15 07:00:36 -0600 |
commit | 92123c6c798682f3a7c1f19984dcd3a06ad6be92 (patch) | |
tree | 5b6330756020c4b7759b328eb1e4de4bd65db3a9 /tests/config.nix.in | |
parent | 19694aa213961daa5cbe2263bfaca53dc068a40c (diff) | |
parent | 546b179d0a89e9f27a02e92004da0f8f08e5041a (diff) |
Merge remote-tracking branch 'upstream/master' into errors-phase-2
Diffstat (limited to 'tests/config.nix.in')
-rw-r--r-- | tests/config.nix.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/config.nix.in b/tests/config.nix.in index 0ec2eba6b..a57a8c596 100644 --- a/tests/config.nix.in +++ b/tests/config.nix.in @@ -11,7 +11,7 @@ rec { derivation ({ inherit system; builder = shell; - args = ["-e" args.builder or (builtins.toFile "builder.sh" "if [ -e .attrs.sh ]; then source .attrs.sh; fi; eval \"$buildCommand\"")]; + args = ["-e" args.builder or (builtins.toFile "builder-${args.name}.sh" "if [ -e .attrs.sh ]; then source .attrs.sh; fi; eval \"$buildCommand\"")]; PATH = path; } // removeAttrs args ["builder" "meta"]) // { meta = args.meta or {}; }; |