meta: also run do-$step_name hooks when run_step is called.
This commit is contained in:
parent
79172bd8dc
commit
166b70f35b
|
@ -67,6 +67,9 @@ run_step() {
|
||||||
msg_error "$pkgver: cannot find do_$step_name()!\n"
|
msg_error "$pkgver: cannot find do_$step_name()!\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Run do_ phase hooks
|
||||||
|
run_pkg_hooks "do-$step_name"
|
||||||
|
|
||||||
# Run post_* Phase
|
# Run post_* Phase
|
||||||
if declare -f "post_$step_name" >/dev/null; then
|
if declare -f "post_$step_name" >/dev/null; then
|
||||||
ch_wrksrc
|
ch_wrksrc
|
||||||
|
|
Loading…
Reference in New Issue