diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-01-23 18:24:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 18:24:44 +0100 |
commit | 2242be83c61788b9c0736a92bb0b5c7bbfc40803 (patch) | |
tree | bcef350775c540a04815f8cf3b3384cb65c8ea23 | |
parent | d506bd587aa62dfa9e70f5ba87dd614f7286fe2d (diff) | |
parent | f8dbde0813c4e8beed6dfd09b093589e027a6675 (diff) |
Merge pull request #3329 from mayflower/attrs-chown
structured-attrs: chown .attrs.* files to builder
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 74a68e1f5..9c6aedfa5 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -2579,6 +2579,7 @@ void DerivationGoal::writeStructuredAttrs() } writeFile(tmpDir + "/.attrs.json", rewriteStrings(json.dump(), inputRewrites)); + chownToBuilder(tmpDir + "/.attrs.json"); /* As a convenience to bash scripts, write a shell file that maps all attributes that are representable in bash - @@ -2647,6 +2648,7 @@ void DerivationGoal::writeStructuredAttrs() } writeFile(tmpDir + "/.attrs.sh", rewriteStrings(jsonSh, inputRewrites)); + chownToBuilder(tmpDir + "/.attrs.sh"); } |