diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-04-18 11:43:57 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-04-18 11:46:57 +0300 |
commit | c9b16fd386f1e6c81852f1f76cf1baeb954b731d (patch) | |
tree | 1068d335b26333ebf62e87272827c9087e8a378e | |
parent | 6af64b827fe913d7b65ff47593c467b8f171d728 (diff) |
Fix arguments of bpkg-pkg-build command at bpkg.test-separate-installed.configure.build step in worker
-rw-r--r-- | bbot/worker/worker.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index f55f867..9ca549c 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -4707,10 +4707,10 @@ build (size_t argc, const char* argv[]) step_id s ( target_pkg - ? step_id::bpkg_test_separate_installed_create_for_target + ? step_id::bpkg_test_separate_installed_configure_build_for_target : host_pkg - ? step_id::bpkg_test_separate_installed_create_for_host - : step_id::bpkg_test_separate_installed_create_for_module); + ? step_id::bpkg_test_separate_installed_configure_build_for_host + : step_id::bpkg_test_separate_installed_configure_build_for_module); step_id f (step_id::bpkg_test_separate_installed_configure_build); |