mirror of
https://github.com/NixOS/nix
synced 2025-06-27 00:11:17 +02:00
Fix macOS build
This commit is contained in:
parent
1ba993d07c
commit
76e368a3b4
4 changed files with 4 additions and 4 deletions
|
@ -1037,7 +1037,7 @@ std::vector<char *> stringsToCharPtrs(const Strings & ss)
|
|||
string runProgram(Path program, bool searchPath, const Strings & args,
|
||||
const std::optional<std::string> & input)
|
||||
{
|
||||
auto res = runProgram({.program = program, .searchPath = searchPath, .args = args, .input = input});
|
||||
auto res = runProgram(RunOptions {.program = program, .searchPath = searchPath, .args = args, .input = input});
|
||||
|
||||
if (!statusOk(res.first))
|
||||
throw ExecError(res.first, fmt("program '%1%' %2%", program, statusToString(res.first)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue