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"