Skip to content

Commit fa98a85

Browse files
Document post_build_fail hook (#4074)
1 parent b856ee1 commit fa98a85

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

reference/extensions/hooks.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ Here you can see a complete example of all the hook functions available:
117117
def post_build(conanfile):
118118
conanfile.output.info("Running after of executing build() method.")
119119
120+
def post_build_fail(conanfile):
121+
conanfile.output.info("Running after failed execution of build() method.")
122+
120123
def pre_package(conanfile):
121124
conanfile.output.info("Running before to execute package() method.")
122125

0 commit comments

Comments
 (0)