Skip to content

Commit

Permalink
[tool] re tool: Fix RunProcessOrThrow invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
osdeverr committed Feb 15, 2024
1 parent d1a664b commit 704b6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ int main(int argc, const char **argv)
std::vector<std::string> run_args(args.begin() + 2, args.end());

auto working_dir = context.GetVar("working-dir").value_or(".");
return re::RunProcessOrThrow(args[3], "", run_args, true, false, working_dir);
return re::RunProcessOrThrow("tool", "", run_args, true, false, working_dir);
}
else if (args[1] == "upgrade")
{
Expand Down

0 comments on commit 704b6c1

Please sign in to comment.