From 6296e6f3d10130149fffce3264f7654524ee08ba Mon Sep 17 00:00:00 2001 From: James Date: Thu, 16 Jan 2025 00:41:27 +0100 Subject: [PATCH] fix message for conan create test_package missing binaries (#17581) --- conans/client/graph/install_graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conans/client/graph/install_graph.py b/conans/client/graph/install_graph.py index 2a23fd8c5c3..896aab9bd67 100644 --- a/conans/client/graph/install_graph.py +++ b/conans/client/graph/install_graph.py @@ -576,8 +576,8 @@ def _raise_missing(self, missing): missing_pkgs = "', '".join(list(sorted([str(pref.ref) for pref in missing_prefs]))) if self._is_test_package: build_msg = "This is a **test_package** missing binary. You can use --build (for " \ - "all dependencies) or --build-test (exclusive for 'test_package' " \ - "dependencies) to define what can be built from sources" + "all dependencies) or --build-test (exclusive for 'conan create' building " \ + "test_package' dependencies) to define what can be built from sources" else: if len(missing_prefs) >= 5: build_str = "--build=missing"