From fdd72db7512ecd2410e9ddcb144abea23d67b2c7 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 16 Sep 2016 16:44:50 +0300 Subject: Audit all print_process()/process ctor for path_search() --- bpkg/archive.cxx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'bpkg/archive.cxx') diff --git a/bpkg/archive.cxx b/bpkg/archive.cxx index e3b5f8b..da381a4 100644 --- a/bpkg/archive.cxx +++ b/bpkg/archive.cxx @@ -68,14 +68,16 @@ namespace bpkg args.push_back (nullptr); - if (verb >= 2) - print_process (args); - try { + process_path pp (process::path_search (args[0])); + + if (verb >= 2) + print_process (args); + // If err is false, then redirect STDERR to STDOUT. // - return process (args.data (), 0, -1, (err ? 2 : 1)); + return process (pp, args.data (), 0, -1, (err ? 2 : 1)); } catch (const process_error& e) { -- cgit v1.1