1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-13 22:12:43 +01:00

Fix macOS build

This commit is contained in:
Eelco Dolstra 2021-09-14 08:19:41 +02:00
parent 1ba993d07c
commit 76e368a3b4
4 changed files with 4 additions and 4 deletions

View file

@ -66,7 +66,7 @@ void handleDiffHook(
auto diffHook = settings.diffHook;
if (diffHook != "" && settings.runDiffHook) {
try {
auto diffRes = runProgram({
auto diffRes = runProgram(RunOptions {
.program = diffHook,
.searchPath = true,
.args = {tryA, tryB, drvPath, tmpDir},