diff options
author | Ben Burdette <bburdette@protonmail.com> | 2022-04-15 14:49:08 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@protonmail.com> | 2022-04-15 14:49:08 -0600 |
commit | 93b8d315087921b0a024bf87555ac6c3bca6882d (patch) | |
tree | 6d1215c6ed2840a71aee94bae892b1fd219bf17c /src/libstore/build/local-derivation-goal.cc | |
parent | 8b197c492e4e2878eb58bb2994fb8d7f8044bf90 (diff) | |
parent | b135de2b5f08aa8b549d69371823235124ef04a1 (diff) |
Merge branch 'master' into debug-exploratory-PR
Diffstat (limited to 'src/libstore/build/local-derivation-goal.cc')
-rw-r--r-- | src/libstore/build/local-derivation-goal.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/build/local-derivation-goal.cc b/src/libstore/build/local-derivation-goal.cc index 40ef706a6..4c91fa4fb 100644 --- a/src/libstore/build/local-derivation-goal.cc +++ b/src/libstore/build/local-derivation-goal.cc @@ -704,6 +704,9 @@ void LocalDerivationGoal::startBuilder() /* Run the builder. */ printMsg(lvlChatty, "executing builder '%1%'", drv->builder); + printMsg(lvlChatty, "using builder args '%1%'", concatStringsSep(" ", drv->args)); + for (auto & i : drv->env) + printMsg(lvlVomit, "setting builder env variable '%1%'='%2%'", i.first, i.second); /* Create the log file. */ Path logFile = openLogFile(); |