From ab5adc0f725d78b4be69fbaaa826566852a1f407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Rinc=C3=B3n=20Blanco?= Date: Thu, 2 Feb 2023 08:57:01 +0100 Subject: [PATCH] Expose conanfile.output to ConanFileInterface --- conans/model/conanfile_interface.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conans/model/conanfile_interface.py b/conans/model/conanfile_interface.py index 8242cf1fb7e..7045d7afdbd 100644 --- a/conans/model/conanfile_interface.py +++ b/conans/model/conanfile_interface.py @@ -118,3 +118,7 @@ def homepage(self): @property def url(self): return self._conanfile.url + + @property + def output(self): + return self._conanfile.output