beamPackages.buildMix: fix install hooks not running

This commit is contained in:
Kristoffer Søholm 2026-06-10 22:24:38 +02:00
commit 8d4f99eeca

View file

@ -7,6 +7,8 @@
beamModuleInstallHook() {
echo "Executing beamModuleInstallHook"
runHook preInstall
mkdir -p "$out/lib/erlang/lib/${beamModuleName}-${version}"
# default to rebar3
@ -25,6 +27,8 @@ beamModuleInstallHook() {
fi
done
runHook postInstall
echo "Finished beamModuleInstallHook"
}