We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e972c5 commit 6acc3adCopy full SHA for 6acc3ad
reference/extensions/hooks.rst
@@ -93,6 +93,12 @@ Here you can see a complete example of all the hook functions available:
93
def post_export(conanfile):
94
conanfile.output.info("Running after of executing export() method.")
95
96
+ def pre_validate(conanfile):
97
+ conanfile.output.info("Running before executing the validate() method.")
98
+
99
+ def post_validate(conanfile):
100
+ conanfile.output.info("Running after executing the validate() method.")
101
102
def pre_source(conanfile):
103
conanfile.output.info("Running before to execute source() method.")
104
0 commit comments