diff options
author | Rebecca Turner <rbt@sent.as> | 2024-09-01 15:20:09 -0700 |
---|---|---|
committer | Rebecca Turner <rbt@sent.as> | 2024-09-01 15:20:09 -0700 |
commit | b7b1b9723f7f0a39b47000c18eb4b89252d02c71 (patch) | |
tree | 3c751fb76631a7adb9439b1f70e729c785b605e8 /src/libstore/globals.hh | |
parent | 02eb07cfd539c34c080cb1baf042e5e780c1fcc2 (diff) |
Clarify that `diff-hook` no longer needs to be an absolute path
See: https://gerrit.lix.systems/c/lix/+/1864
Change-Id: Ic70bfe42b261a83f2cb68b8f102833b739b8e03a
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 51550b2c3..94aa60825 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -637,10 +637,10 @@ public: PathsSetting<std::optional<Path>> diffHook{ this, std::nullopt, "diff-hook", R"( - Absolute path to an executable capable of diffing build - results. The hook is executed if `run-diff-hook` is true, and the - output of a build is known to not be the same. This program is not - executed to determine if two results are the same. + Path to an executable capable of diffing build results. The hook is + executed if `run-diff-hook` is true, and the output of a build is + known to not be the same. This program is not executed to determine + if two results are the same. The diff hook is executed by the same user and group who ran the build. However, the diff hook does not have write access to the |