Fix macOS build

This commit is contained in:
Eelco Dolstra
2021-09-14 10:07:31 +02:00
parent 1ba993d07c
commit 76e368a3b4
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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)));