summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rw-r--r--functions5
1 files changed, 5 insertions, 0 deletions
diff --git a/functions b/functions
index 10a072c..4d7b2ea 100644
--- a/functions
+++ b/functions
@@ -646,6 +646,11 @@ run_build_hook() {
# run
msg2 "Running build hook: [%s]" "${script##*/}"
build
+
+ # if we made it this far, return successfully. Hooks can
+ # do their own error catching if it's severe enough, and
+ # we already capture errors from the add_* functions.
+ return 0
}
# vim: set ft=sh ts=4 sw=4 et: