(#16988) docs: Access build folder using the improved syntax from 1.53

https://github.com/conan-io/conan-center-index/pull/16847/files#r1158843293
This commit is contained in:
Chris Mc
2023-04-12 04:02:23 -07:00
committed by GitHub
parent 04e4a916e8
commit 52392b8485
5 changed files with 5 additions and 5 deletions

View File

@@ -23,5 +23,5 @@ class TestPackageConan(ConanFile):
def test(self):
if can_run(self):
bin_path = os.path.join(self.cpp.build.bindirs[0], "test_package")
bin_path = os.path.join(self.cpp.build.bindir, "test_package")
self.run(bin_path, env="conanrun")