Skip to content

Commit

Permalink
fix message for conan create test_package missing binaries (#17581)
Browse files Browse the repository at this point in the history
  • Loading branch information
memsharded authored Jan 15, 2025
1 parent 13d4c3d commit 6296e6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conans/client/graph/install_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6296e6f

Please sign in to comment.