diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-03-24 15:23:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-03-24 15:23:53 +0300 |
commit | d05bbb51070495f5f66817db7322dc51f341b82c (patch) | |
tree | c5ed3a15b8a64ea70eeea31a875a3370d076efb4 | |
parent | e1cd2796a608a43f9f1970b52e98664bc8d34601 (diff) |
Minor cleanup of process::path_search() calls
-rw-r--r-- | bdep/utility.txx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/utility.txx b/bdep/utility.txx index a7d060d..e0dd4ec 100644 --- a/bdep/utility.txx +++ b/bdep/utility.txx @@ -80,7 +80,7 @@ namespace bdep try { - process_path pp (process::path_search (bpkg, exec_dir)); + process_path pp (process::path_search (bpkg, true /* init */, exec_dir)); small_vector<const char*, 1> ops; @@ -202,7 +202,7 @@ namespace bdep try { - process_path pp (process::path_search (b, exec_dir)); + process_path pp (process::path_search (b, true /* init */, exec_dir)); small_vector<const char*, 1> ops; |